@storm-software/cloudflare-tools
Version:
A Nx plugin package that contains various executors, generators, and utilities that assist in managing Cloudflare services.
15 lines (10 loc) • 530 B
text/typescript
import { Tree } from '@nx/devkit';
interface InitGeneratorSchema {
unitTestRunner?: "vitest" | "jest" | "none";
skipFormat?: boolean;
js?: boolean;
template?: "fetch-handler" | "scheduled-handler" | "hono" | "none";
}
declare function initGenerator(tree: Tree, schema: InitGeneratorSchema): Promise<() => Promise<void>>;
declare const initSchematic: (generatorOptions: InitGeneratorSchema) => (tree: any, context: any) => Promise<any>;
export { type InitGeneratorSchema as I, initSchematic as a, initGenerator as i };