UNPKG

@itrocks/framework

Version:

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

9 lines (8 loc) 405 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<T>): void; get parent(): any; get properties(): import("@itrocks/reflect").ReflectProperty<T>[]; get uses(): import("@itrocks/class-type").Type[]; }