Files
frontend/node_modules/antd/es/_util/hooks/useSyncState.d.ts
2026-01-17 15:16:36 -05:00

4 lines
163 B
TypeScript

type UseSyncStateProps<T> = readonly [() => T, (newValue: T) => void];
export declare const useSyncState: <T>(initialValue: T) => UseSyncStateProps<T>;
export {};