@wbg-mde/model
Version:
Metadata Editor Model Definitions
21 lines (20 loc) • 428 B
TypeScript
export declare class ProjectHeader {
constructor(header: any);
version: string;
_id: string;
header: string;
type: string;
name: string;
language: string;
template: string;
dblngcoretemplate?: string;
status: ProjectStatus;
created: Date;
modified: Date;
archived: Date;
}
export declare enum ProjectStatus {
new = 1,
saved = 2,
archived = 3
}