UNPKG

pesco-karavan-core

Version:
13 lines (12 loc) 390 B
export declare class ProjectProperty { id: string; key: string; value: any; constructor(init?: Partial<ProjectProperty>); static createNew(key: string, value: any): ProjectProperty; } export declare class ProjectModel { properties: ProjectProperty[]; constructor(init?: Partial<ProjectModel>); static createNew(init?: Partial<ProjectModel>): ProjectModel; }