Files
2026-01-16 01:51:36 +00:00

9 lines
250 B
TypeScript

import * as React from 'react';
export interface LayoutContextProps {
siderHook: {
addSider: (id: string) => void;
removeSider: (id: string) => void;
};
}
export declare const LayoutContext: React.Context<LayoutContextProps>;