UNPKG

@awhere/api

Version:

The awesome aWhere API for JavaScript.

10 lines (9 loc) 267 B
import { ISchemaTypeOpts } from '../SchemaDefinition'; export default class FieldDefinition { static generateId(): string; _id: string; name: string; type: string; props?: ISchemaTypeOpts<any>; constructor(field?: Partial<FieldDefinition>); }