/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { JsonType } from './json_type'; export interface FieldDetails { id?: string; name?: string; custom?: boolean; orderable?: boolean; navigable?: boolean; searchable?: boolean; clauseNames?: string[]; schema?: JsonType; } //# sourceMappingURL=field_details.d.ts.map