UNPKG

react-native-builder-bob

Version:

CLI to build JavaScript files for React Native libraries

15 lines (14 loc) 343 B
import { type Target } from './schema.ts'; export declare const args: { target: { type: "string"; description: string; choices: ("module" | "commonjs" | "typescript" | "codegen")[]; }; }; type Argv = { $0: string; target?: Target; }; export declare function build(argv: Argv): Promise<void>; export {};