create-workspace
Version:
CLI-based tool to create a workspace with multiple projects, e.g. frontend/backend/shared
13 lines (12 loc) • 334 B
TypeScript
import { Project } from "./project";
export interface Directory {
name: string;
entries: Entry[];
}
export declare type Entry = Directory | Project;
export declare class Workspace implements Directory {
name: string;
entries: Entry[];
path: string;
constructor(name: string, directory?: string);
}