@pagopa/dx-cli
Version:
A CLI useful to manage DX tools.
9 lines (8 loc) • 558 B
TypeScript
import type { NodePlopAPI } from "plop";
import { Result, ResultAsync } from "neverthrow";
import { PlopGenerator } from "node-plop";
export declare const initPlop: () => ResultAsync<NodePlopAPI, Error>;
export declare const getGenerator: (plopAPI: NodePlopAPI) => (name: string) => Result<PlopGenerator, Error>;
export declare const getPrompts: (generator: PlopGenerator) => ResultAsync<any, Error>;
export declare const setMonorepoGenerator: (plop: NodePlopAPI) => void;
export declare const setDeploymentEnvironmentGenerator: (plop: NodePlopAPI) => void;