Search
Dit document is vertaald door AI. Voor onnauwkeurigheden, raadpleeg de Engelse versie
IField definieert de interface die een veld moet implementeren.
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