Files
2026-01-16 01:51:36 +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 {};