main
ts 15 lines 477 Bytes
Raw
1 /**
2 * Type declarations for shared/ReactFeatureFlags
3 *
4 * This allows importing from the Flow-typed ReactFeatureFlags.js file
5 * without TypeScript errors.
6 */
7 declare module 'shared/ReactFeatureFlags' {
8 export const eprh_enableUseKeyedStateCompilerLint: boolean;
9 export const eprh_enableVerboseNoSetStateInEffectCompilerLint: boolean;
10 export const eprh_enableExhaustiveEffectDependenciesCompilerLint:
11 | 'off'
12 | 'all'
13 | 'extra-only'
14 | 'missing-only';
15 }