linkmore-design
Version:
π πlmη»δ»ΆεΊγπ
14 lines (13 loc) β’ 350 B
TypeScript
/// <reference types="react" />
declare const TableContext: import("react").Context<{
state: any;
dispatch: any;
instance: any;
}>;
declare const useStore: () => {
state: any;
dispatch: any;
instance: any;
};
declare const useRealive: () => [any, import("react").Dispatch<any>];
export { TableContext, useStore, useRealive };