Search
このドキュメントはAIによって翻訳されました。不正確な情報については、英語版をご参照ください
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