-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontent.d.ts
More file actions
209 lines (191 loc) · 6.05 KB
/
Copy pathcontent.d.ts
File metadata and controls
209 lines (191 loc) · 6.05 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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
declare module "astro:content" {
interface Render {
".mdx": Promise<{
Content: import("astro").MDXContent;
headings: import("astro").MarkdownHeading[];
remarkPluginFrontmatter: Record<string, any>;
components: import("astro").MDXInstance<{}>["components"];
}>;
}
}
declare module "astro:content" {
export interface RenderResult {
Content: import("astro/runtime/server/index.js").AstroComponentFactory;
headings: import("astro").MarkdownHeading[];
remarkPluginFrontmatter: Record<string, any>;
}
interface Render {
".md": Promise<RenderResult>;
}
export interface RenderedContent {
html: string;
metadata?: {
imagePaths: Array<string>;
[key: string]: unknown;
};
}
type Flatten<T> = T extends { [K: string]: infer U } ? U : never;
export type CollectionKey = keyof DataEntryMap;
export type CollectionEntry<C extends CollectionKey> = Flatten<
DataEntryMap[C]
>;
type AllValuesOf<T> = T extends any ? T[keyof T] : never;
export type ReferenceDataEntry<
C extends CollectionKey,
E extends keyof DataEntryMap[C] = string,
> = {
collection: C;
id: E;
};
export type ReferenceLiveEntry<
C extends keyof LiveContentConfig["collections"],
> = {
collection: C;
id: string;
};
export function getCollection<
C extends keyof DataEntryMap,
E extends CollectionEntry<C>,
>(
collection: C,
filter?: (entry: CollectionEntry<C>) => entry is E,
): Promise<E[]>;
export function getCollection<C extends keyof DataEntryMap>(
collection: C,
filter?: (entry: CollectionEntry<C>) => unknown,
): Promise<CollectionEntry<C>[]>;
export function getLiveCollection<
C extends keyof LiveContentConfig["collections"],
>(
collection: C,
filter?: LiveLoaderCollectionFilterType<C>,
): Promise<
import("astro").LiveDataCollectionResult<
LiveLoaderDataType<C>,
LiveLoaderErrorType<C>
>
>;
export function getEntry<
C extends keyof DataEntryMap,
E extends keyof DataEntryMap[C] | (string & {}),
>(
entry: ReferenceDataEntry<C, E>,
): E extends keyof DataEntryMap[C]
? Promise<DataEntryMap[C][E]>
: Promise<CollectionEntry<C> | undefined>;
export function getEntry<
C extends keyof DataEntryMap,
E extends keyof DataEntryMap[C] | (string & {}),
>(
collection: C,
id: E,
): E extends keyof DataEntryMap[C]
? string extends keyof DataEntryMap[C]
? Promise<DataEntryMap[C][E]> | undefined
: Promise<DataEntryMap[C][E]>
: Promise<CollectionEntry<C> | undefined>;
export function getLiveEntry<
C extends keyof LiveContentConfig["collections"],
>(
collection: C,
filter: string | LiveLoaderEntryFilterType<C>,
): Promise<
import("astro").LiveDataEntryResult<
LiveLoaderDataType<C>,
LiveLoaderErrorType<C>
>
>;
/** Resolve an array of entry references from the same collection */
export function getEntries<C extends keyof DataEntryMap>(
entries: ReferenceDataEntry<C, keyof DataEntryMap[C]>[],
): Promise<CollectionEntry<C>[]>;
export function render<C extends keyof DataEntryMap>(
entry: DataEntryMap[C][string],
): Promise<RenderResult>;
export function reference<
C extends
| keyof DataEntryMap
// Allow generic `string` to avoid excessive type errors in the config
// if `dev` is not running to update as you edit.
// Invalid collection names will be caught at build time.
| (string & {}),
>(
collection: C,
): import("astro/zod").ZodPipe<
import("astro/zod").ZodString,
import("astro/zod").ZodTransform<
C extends keyof DataEntryMap
? {
collection: C;
id: string;
}
: never,
string
>
>;
type ReturnTypeOrOriginal<T> = T extends (...args: any[]) => infer R ? R : T;
type InferEntrySchema<C extends keyof DataEntryMap> =
import("astro/zod").infer<
ReturnTypeOrOriginal<Required<ContentConfig["collections"][C]>["schema"]>
>;
type ExtractLoaderConfig<T> = T extends { loader: infer L } ? L : never;
type InferLoaderSchema<
C extends keyof DataEntryMap,
L = ExtractLoaderConfig<ContentConfig["collections"][C]>,
> = L extends { schema: import("astro/zod").ZodSchema }
? import("astro/zod").infer<L["schema"]>
: any;
type DataEntryMap = {
blog: Record<
string,
{
id: string;
body?: string;
collection: "blog";
data: any;
rendered?: RenderedContent;
filePath?: string;
}
>;
};
type ExtractLoaderTypes<T> = T extends import("astro/loaders").LiveLoader<
infer TData,
infer TEntryFilter,
infer TCollectionFilter,
infer TError
>
? {
data: TData;
entryFilter: TEntryFilter;
collectionFilter: TCollectionFilter;
error: TError;
}
: {
data: never;
entryFilter: never;
collectionFilter: never;
error: never;
};
type ExtractEntryFilterType<T> = ExtractLoaderTypes<T>["entryFilter"];
type ExtractCollectionFilterType<T> =
ExtractLoaderTypes<T>["collectionFilter"];
type ExtractErrorType<T> = ExtractLoaderTypes<T>["error"];
type LiveLoaderDataType<C extends keyof LiveContentConfig["collections"]> =
LiveContentConfig["collections"][C]["schema"] extends undefined
? ExtractDataType<LiveContentConfig["collections"][C]["loader"]>
: import("astro/zod").infer<
Exclude<LiveContentConfig["collections"][C]["schema"], undefined>
>;
type LiveLoaderEntryFilterType<
C extends keyof LiveContentConfig["collections"],
> = ExtractEntryFilterType<LiveContentConfig["collections"][C]["loader"]>;
type LiveLoaderCollectionFilterType<
C extends keyof LiveContentConfig["collections"],
> = ExtractCollectionFilterType<
LiveContentConfig["collections"][C]["loader"]
>;
type LiveLoaderErrorType<C extends keyof LiveContentConfig["collections"]> =
ExtractErrorType<LiveContentConfig["collections"][C]["loader"]>;
export type ContentConfig = never;
export type LiveContentConfig = never;
}