@itrocks/framework
Version:
RAD framework for intuitive web application development, blending data and domain-driven design with modular architecture
11 lines (10 loc) • 534 B
TypeScript
import { HtmlContainer } from '@itrocks/core-transformers';
import { ReflectProperty as RP } from '@itrocks/reflect';
import { ReflectClass } from './reflect-class';
export declare class ReflectProperty<T extends object, K extends keyof T = keyof T> extends RP<T, K> {
get class(): ReflectClass<T>;
edit(format?: string): Promise<any>;
output(format?: string, askFor?: HtmlContainer): Promise<any>;
outputMandatoryContainer(format?: string): Promise<any>;
outputOptionalContainer(format?: string): Promise<any>;
}