forked from payloadcms/payload
-
Notifications
You must be signed in to change notification settings - Fork 0
/
types.d.ts
74 lines (68 loc) · 1.72 KB
/
types.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
export * from './dist/types';
export {
AccessArgs,
Access,
} from './dist/config/types';
export {
CollectionConfig,
SanitizedCollectionConfig,
BeforeOperationHook as CollectionBeforeOperationHook,
BeforeValidateHook as CollectionBeforeValidateHook,
BeforeChangeHook as CollectionBeforeChangeHook,
AfterChangeHook as CollectionAfterChangeHook,
AfterReadHook as CollectionAfterReadHook,
BeforeReadHook as CollectionBeforeReadHook,
BeforeDeleteHook as CollectionBeforeDeleteHook,
AfterDeleteHook as CollectionAfterDeleteHook,
BeforeLoginHook as CollectionBeforeLoginHook,
AfterLoginHook as CollectionAfterLoginHook,
AfterForgotPasswordHook as CollectionAfterForgotPasswordHook,
BeforeDuplicate,
} from './dist/collections/config/types';
export {
GlobalConfig,
SanitizedGlobalConfig,
BeforeValidateHook as GlobalBeforeValidateHook,
BeforeChangeHook as GlobalBeforeChangeHook,
AfterChangeHook as GlobalAfterChangeHook,
BeforeReadHook as GlobalBeforeReadHook,
AfterReadHook as GlobalAfterReadHook,
} from './dist/globals/config/types';
export {
Field,
FieldHook,
FieldWithPath,
FieldAccess,
RichTextCustomElement,
RichTextCustomLeaf,
Block,
TextField,
NumberField,
EmailField,
TextareaField,
CheckboxField,
DateField,
BlockField,
GroupField,
RadioField,
RelationshipField,
ArrayField,
RichTextField,
SelectField,
UploadField,
CodeField,
PointField,
RowField,
CollapsibleField,
TabsField,
UIField,
Validate,
} from './dist/fields/config/types';
export {
RowLabel,
} from './dist/admin/components/forms/RowLabel/types';
export {
CustomSaveButtonProps,
CustomSaveDraftButtonProps,
CustomPublishButtonProps,
} from './dist/admin/components/elements/types';