useSyncExternalStore.d.ts 345 B

12345
  1. import type { useSyncExternalStore } from 'use-sync-external-store';
  2. import type { useSyncExternalStoreWithSelector } from 'use-sync-external-store/with-selector';
  3. export declare const notInitialized: () => never;
  4. export declare type uSES = typeof useSyncExternalStore;
  5. export declare type uSESWS = typeof useSyncExternalStoreWithSelector;