UNPKG

react-native-onyx

Version:

State management for React Native

12 lines (11 loc) 294 B
import type { IDevTools } from './types'; /** * No-op implementation of DevTools that does nothing * Used when DevTools is disabled */ declare class NoOpDevTools implements IDevTools { registerAction(): void; initState(): void; clearState(): void; } export default NoOpDevTools;