UNPKG
create-workspace
Version:
latest (0.1.0)
0.1.0
CLI-based tool to create a workspace with multiple projects, e.g. frontend/backend/shared
create-workspace
/
dist
/
project.d.ts
8 lines
(7 loc)
•
154 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
export
declare
class
Project
{
name
:
string
;
aspects
:
ProjectAspect
[];
constructor
(
name
:
string
); }
export
interface
ProjectAspect
{ }