@softwareventures/maintain-project
Version:
Automatically create and maintain TypeScript projects with standard settings for Software Ventures Limited
7 lines (6 loc) • 305 B
TypeScript
export type TemplateId = keyof typeof templates;
export declare const templates: {
readonly node: "@softwareventures/template-node-project";
readonly webpack: "@softwareventures/template-webpack-project";
};
export declare function templatePath(id: TemplateId, ...pathSegments: string[]): string;