-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprismicio-types.d.ts
More file actions
166 lines (148 loc) · 4.15 KB
/
Copy pathprismicio-types.d.ts
File metadata and controls
166 lines (148 loc) · 4.15 KB
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
// Code generated by Slice Machine. DO NOT EDIT.
import type * as prismic from "@prismicio/client";
type Simplify<T> = { [KeyType in keyof T]: T[KeyType] };
type PostDocumentDataSlicesSlice = TemplateSlice;
/**
* Content for post documents
*/
interface PostDocumentData {
/**
* Slice Zone field in *post*
*
* - **Field Type**: Slice Zone
* - **Placeholder**: *None*
* - **API ID Path**: post.slices[]
* - **Tab**: Main
* - **Documentation**: https://prismic.io/docs/field#slices
*/
slices: prismic.SliceZone<PostDocumentDataSlicesSlice> /**
* Meta Title field in *post*
*
* - **Field Type**: Text
* - **Placeholder**: A title of the page used for social media and search engines
* - **API ID Path**: post.meta_title
* - **Tab**: SEO & Metadata
* - **Documentation**: https://prismic.io/docs/field#key-text
*/;
meta_title: prismic.KeyTextField;
/**
* Meta Description field in *post*
*
* - **Field Type**: Text
* - **Placeholder**: A brief summary of the page
* - **API ID Path**: post.meta_description
* - **Tab**: SEO & Metadata
* - **Documentation**: https://prismic.io/docs/field#key-text
*/
meta_description: prismic.KeyTextField;
/**
* Meta Image field in *post*
*
* - **Field Type**: Image
* - **Placeholder**: *None*
* - **API ID Path**: post.meta_image
* - **Tab**: SEO & Metadata
* - **Documentation**: https://prismic.io/docs/field#image
*/
meta_image: prismic.ImageField<never>;
}
/**
* post document from Prismic
*
* - **API ID**: `post`
* - **Repeatable**: `true`
* - **Documentation**: https://prismic.io/docs/custom-types
*
* @typeParam Lang - Language API ID of the document.
*/
export type PostDocument<Lang extends string = string> =
prismic.PrismicDocumentWithUID<Simplify<PostDocumentData>, "post", Lang>;
export type AllDocumentTypes = PostDocument;
/**
* Primary content in *Template → Default → Primary*
*/
export interface TemplateSliceDefaultPrimary {
/**
* Title field in *Template → Default → Primary*
*
* - **Field Type**: Text
* - **Placeholder**: Title
* - **API ID Path**: template.default.primary.title
* - **Documentation**: https://prismic.io/docs/field#key-text
*/
title: prismic.KeyTextField;
/**
* Subtitle field in *Template → Default → Primary*
*
* - **Field Type**: Rich Text
* - **Placeholder**: Subtitle
* - **API ID Path**: template.default.primary.subtitle
* - **Documentation**: https://prismic.io/docs/field#rich-text-title
*/
subtitle: prismic.RichTextField;
/**
* Content field in *Template → Default → Primary*
*
* - **Field Type**: Rich Text
* - **Placeholder**: Content
* - **API ID Path**: template.default.primary.content
* - **Documentation**: https://prismic.io/docs/field#rich-text-title
*/
content: prismic.RichTextField;
}
/**
* Default variation for Template Slice
*
* - **API ID**: `default`
* - **Description**: Default
* - **Documentation**: https://prismic.io/docs/slice
*/
export type TemplateSliceDefault = prismic.SharedSliceVariation<
"default",
Simplify<TemplateSliceDefaultPrimary>,
never
>;
/**
* Slice variation for *Template*
*/
type TemplateSliceVariation = TemplateSliceDefault;
/**
* Template Shared Slice
*
* - **API ID**: `template`
* - **Description**: Template
* - **Documentation**: https://prismic.io/docs/slice
*/
export type TemplateSlice = prismic.SharedSlice<
"template",
TemplateSliceVariation
>;
declare module "@prismicio/client" {
interface CreateClient {
(
repositoryNameOrEndpoint: string,
options?: prismic.ClientConfig,
): prismic.Client<AllDocumentTypes>;
}
interface CreateWriteClient {
(
repositoryNameOrEndpoint: string,
options: prismic.WriteClientConfig,
): prismic.WriteClient<AllDocumentTypes>;
}
interface CreateMigration {
(): prismic.Migration<AllDocumentTypes>;
}
namespace Content {
export type {
PostDocument,
PostDocumentData,
PostDocumentDataSlicesSlice,
AllDocumentTypes,
TemplateSlice,
TemplateSliceDefaultPrimary,
TemplateSliceVariation,
TemplateSliceDefault,
};
}
}