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

11 lines
235 B
TypeScript
Raw Normal View History

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