source: node_modules/react-redux/src/utils/useSyncExternalStore.ts

Last change on this file was a762898, checked in by istevanoska <ilinastevanoska@…>, 5 months ago

Added visualizations

  • Property mode set to 100644
File size: 355 bytes
Line 
1import type { useSyncExternalStore } from 'use-sync-external-store'
2import type { useSyncExternalStoreWithSelector } from 'use-sync-external-store/with-selector'
3
4export const notInitialized = () => {
5 throw new Error('uSES not initialized!')
6}
7
8export type uSES = typeof useSyncExternalStore
9export type uSESWS = typeof useSyncExternalStoreWithSelector
Note: See TracBrowser for help on using the repository browser.