UNPKG

@udraft/core

Version:

uDraft is a language and stack agnostic code-generation tool that simplifies full-stack development by converting a single YAML file into code for rapid development.

12 lines (11 loc) 314 B
export declare class UAttribute<Type> { private _name; private _value?; private _defaultValue?; constructor(name: string, value?: Type); $name(): string; $value(): NonNullable<Type> | null; $default(): Type | undefined; default(value?: Type): this; value(value?: Type): this; }