ovuse
Version:
WPF-inspired Web UI framework
7 lines (6 loc) • 445 B
TypeScript
export declare function hasProperty(obj: any, propertyName: string): boolean;
export declare function isString(obj: any): boolean;
export declare function getTypeName(obj: any): string;
export declare function getFirstAnchestor(obj: any): any | undefined;
export declare function getPropertyValue(obj: any, propertyName: string): any | undefined;
export declare function setPropertyValue(obj: any, propertyName: string, value: any): void;