Files
2024-06-11 23:18:25 +02:00

4 lines
212 B
TypeScript

type UseSyncExternalStoreFn = <T>(subscribe: (fn: () => void) => () => void, getSnapshot: () => T, getServerSnapshot?: () => T) => T;
export declare const useSyncExternalStore: UseSyncExternalStoreFn;
export {};