UNPKG

765 BTypeScriptView Raw
1export 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: 'ResourceLink';
27 linkType: string;
28} | {
29 type: 'Array';
30 items: {
31 type: 'Symbol';
32 };
33} | {
34 type: 'Array';
35 items: {
36 type: 'Link';
37 linkType: 'Entry';
38 };
39} | {
40 type: 'Array';
41 items: {
42 type: 'ResourceLink';
43 linkType: string;
44 };
45} | {
46 type: 'Array';
47 items: {
48 type: 'Link';
49 linkType: 'Asset';
50 };
51};