Files
icehrm/web/node_modules/antd/lib/table/hooks/useSyncState.d.ts
2020-05-20 18:47:29 +02:00

4 lines
161 B
TypeScript

declare type UseSyncStateProps<T> = [() => T, (newValue: T) => void];
export default function useSyncState<T>(filteredKeys: T): UseSyncStateProps<T>;
export {};