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