UNPKG

create-workspace

Version:

CLI-based tool to create a workspace with multiple projects, e.g. frontend/backend/shared

8 lines (7 loc) 154 B
export declare class Project { name: string; aspects: ProjectAspect[]; constructor(name: string); } export interface ProjectAspect { }