UNPKG

smart-grid-g

Version:
10 lines (9 loc) 344 B
/// <reference types="react" /> export declare function useLocalStorage<T>(storageKey: string, initValue: T): [T, React.Dispatch<React.SetStateAction<T>>]; interface useTableConfigProps { tableConfig: any; columns: any[]; tableKey?: string; } export declare const useTableConfig: (props: useTableConfigProps) => any[][]; export {};