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

10 lines
188 B
TypeScript
Raw Normal View History

2024-01-27 20:06:41 +00:00
export interface Context {
dryRun: boolean;
installDeps: boolean;
initGitRepo: boolean;
pkgManager: "npm" | "yarn" | "pnpm" | null;
args: string[];
}
export type Template = "basic";