UNPKG

@nx/react-native

Version:

The Nx Plugin for React Native contains generators for managing React Native applications and libraries within an Nx workspace. It provides: -Integration with libraries such as Jest, Detox, and Storybook. -Scaffolding for creating buildable libraries th

10 lines (9 loc) 595 B
import { Tree } from '@nx/devkit'; import { StorybookConfigureSchema } from './schema'; export declare function storybookConfigurationGenerator(tree: Tree, schema: StorybookConfigureSchema): Promise<import("@nx/devkit").GeneratorCallback>; /** * This would be a direct pass through to @nx/react:storybook-configuration generator. * @TODO (@xiongemi): remove this generator for v19 */ export declare function storybookConfigurationGeneratorInternal(host: Tree, schema: StorybookConfigureSchema): Promise<import("@nx/devkit").GeneratorCallback>; export default storybookConfigurationGenerator;