react-native-navigation
Version:
React Native Navigation - truly native navigation for iOS and Android
9 lines • 327 B
TypeScript
import { Layout } from './Layout';
import { CommandName } from './CommandName';
export interface LayoutProcessor {
(layout: Layout<{}>, commandName: CommandName): Layout<{}>;
}
export interface OptionsProcessor<T, S = any> {
(value: T, commandName: CommandName, props?: S): T;
}
//# sourceMappingURL=Processors.d.ts.map