@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.
13 lines (12 loc) • 645 B
TypeScript
import { UAttribute } from "../entities/attribute";
import { UField } from "../entities/field";
import { UFeature } from "../entities/feature";
import { UModel } from "../entities/model";
import { UDraft } from "../entities/draft";
import { UModule } from "../entities/module";
export declare const uattr: <Type>(name: string, value?: Type) => UAttribute<Type>;
export declare const uField: (name: string, type: string) => UField;
export declare const uModel: (name: string) => UModel;
export declare const uFeature: (name: string) => UFeature;
export declare const uModule: (name: string) => UModule;
export declare const uDraft: () => UDraft;