mirror of
https://github.com/directus/directus.git
synced 2026-02-11 01:35:02 -05:00
19 lines
387 B
TypeScript
19 lines
387 B
TypeScript
export type FieldInfo = {
|
|
id: number;
|
|
collection: string;
|
|
field: string;
|
|
special: string | null;
|
|
interface: string | null;
|
|
options: Record<string, any> | null;
|
|
locked: boolean;
|
|
required: boolean;
|
|
readonly: boolean;
|
|
hidden_detail: boolean;
|
|
hidden_browse: boolean;
|
|
sort: number | null;
|
|
width: string | null;
|
|
group: number | null;
|
|
note: string | null;
|
|
translation: null;
|
|
};
|