import { IProperty } from "./IProperty"; export default class Property implements IProperty { name: string; type: string; children: IProperty[]; parent?: IProperty; value: any; constructor(name: string, type: string, children: IProperty[], parent: IProperty); resolve(path: string): Promise; GetValue(): Promise; private FindAndResolve; private HandleInlink; private HandleOutlink; }