Search
تمت ترجمة هذه الوثائق تلقائيًا بواسطة الذكاء الاصطناعي.
تُعرّف IField الواجهة التي يجب أن يطبقها الحقل.
IField
export type FieldOptions = { name: string; field: string; rawType: string; type: string; description?: string; interface?: string; uiSchema?: any; possibleTypes?: string[]; defaultValue?: any; primaryKey: boolean; unique: boolean; allowNull?: boolean; autoIncrement?: boolean; [key: string]: any; }; export interface IField { options: FieldOptions; }
FieldOptions