mirror of
https://github.com/estruyf/vscode-front-matter.git
synced 2026-06-21 02:24:43 +02:00
8 lines
117 B
TypeScript
8 lines
117 B
TypeScript
export interface Framework {
|
|
name: string;
|
|
dist: string;
|
|
static: string;
|
|
build: string;
|
|
server?: string;
|
|
}
|