astro-ghostcms/packages/create-astro-ghostcms/index.d.ts

11 lines
222 B
TypeScript

export interface Context {
dryRun: boolean;
installDeps: boolean;
initGitRepo: boolean;
template: string;
pkgManager: "npm" | "yarn" | "pnpm" | null;
args: string[];
}
export type Template = ["basic","starterkit"];