Files
vscode-front-matter/src/models/Framework.ts
T
2023-03-04 10:45:18 +01:00

8 lines
117 B
TypeScript

export interface Framework {
name: string;
dist: string;
static: string;
build: string;
server?: string;
}