context.d.ts 250 B

12345678
  1. import * as React from 'react';
  2. export interface LayoutContextProps {
  3. siderHook: {
  4. addSider: (id: string) => void;
  5. removeSider: (id: string) => void;
  6. };
  7. }
  8. export declare const LayoutContext: React.Context<LayoutContextProps>;