import { FieldType, FieldTypePlatform } from './field-type-info'; export interface PlatformParams { /** * Platform * Such as mongoose\formily. */ platform: FieldTypePlatform; } export interface GetFieldTypeParams extends PlatformParams { /** * Field Properties */ fieldProperties: any; } export type GetFieldType = (parmas: GetFieldTypeParams) => FieldType; //# sourceMappingURL=get-field-type.d.ts.map