UNPKG

618 BTypeScriptView Raw
1export declare type FieldType = {
2 type: 'Symbol';
3} | {
4 type: 'Text';
5} | {
6 type: 'RichText';
7} | {
8 type: 'Integer';
9} | {
10 type: 'Number';
11} | {
12 type: 'Date';
13} | {
14 type: 'Boolean';
15} | {
16 type: 'Object';
17} | {
18 type: 'Location';
19} | {
20 type: 'Link';
21 linkType: 'Asset';
22} | {
23 type: 'Link';
24 linkType: 'Entry';
25} | {
26 type: 'Array';
27 items: {
28 type: 'Symbol';
29 };
30} | {
31 type: 'Array';
32 items: {
33 type: 'Link';
34 linkType: 'Entry';
35 };
36} | {
37 type: 'Array';
38 items: {
39 type: 'Link';
40 linkType: 'Asset';
41 };
42};