Files
copilot-toolbox-template-123/node_modules/antd/es/_util/hooks/useSyncState.d.ts
2026-01-09 14:52:46 +00:00

4 lines
163 B
TypeScript

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