recoil
Version:
Recoil - A state management library for React
22 lines (18 loc) • 555 B
Flow
/**
* (c) Facebook, Inc. and its affiliates. Confidential and proprietary.
*
* @emails oncall+recoil
* @flow strict-local
* @format
*/
;
import type { RecoilValueInfo } from '../core/Recoil_FunctionalCore';
import type { RecoilValue } from '../core/Recoil_RecoilValue';
const {
peekNodeInfo
} = require('../core/Recoil_FunctionalCore');
const {
useStoreRef
} = require('../core/Recoil_RecoilRoot.react');
declare function useGetRecoilValueInfo(): <T>(RecoilValue<T>) => RecoilValueInfo<T>;
module.exports = useGetRecoilValueInfo;