export interface IProperty { resolve(path?: string): Promise; GetValue(): Promise; name: string; type: string; children: IProperty[]; parent?: IProperty; value: any; }