matron
Version:
> A Domain Specific Language à-la Dockerfile with a CLI to scaffold your projects.
36 lines (35 loc) • 1 kB
TypeScript
/// <reference types="yargs" />
export declare const create: {
command: string;
describe: string;
builder: (yargs: import("yargs").Argv<{}>) => import("yargs").Argv<import("yargs").Omit<{}, import("./create").CommandOptions> & import("yargs").InferredOptionTypes<{
project: {
alias: string;
describe: string;
type: "string";
};
template: {
alias: string;
describe: string;
type: "string";
};
"matron-file": {
alias: string;
describe: string;
type: "string";
};
"env-folder": {
describe: string;
type: "string";
};
}>>;
handler: (args: {
[x: string]: unknown;
project: string | undefined;
template: string | undefined;
"matron-file": string | undefined;
"env-folder": string | undefined;
_: string[];
$0: string;
}) => void;
};