UNPKG

@itrocks/framework

Version:

RAD framework for intuitive web application development, blending data and domain-driven design with modular architecture

12 lines (11 loc) 526 B
import { PropertyTypes } from '@itrocks/property-type'; import { ReflectClass as RC } from '@itrocks/reflect'; export declare class ReflectClass<T extends object = object> extends RC<T> { inheritedPropertyTypes(propertyTypes: PropertyTypes): void; get parent(): any; get properties(): { [s: string]: import("@itrocks/reflect").ReflectProperty<T>; [Symbol.iterator](): Iterator<import("@itrocks/reflect").ReflectProperty<T>, any, any>; }; get uses(): import("@itrocks/class-type").Type[]; }