forked from silverstripe/nextjs-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
types.d.ts
48 lines (37 loc) · 892 Bytes
/
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
import React from "react"
export type StringMap = {
[key: string]: string
}
export interface ClientConfig {
endpoint: string
options: {
[key: string]: string | StringMap
headers: StringMap
}
}
export interface ProjectConfig {
elemental?: {
fragmentsPath: string
componentsPath: string,
}
query: {
pluraliser: (s: string) => string,
}
page: {
ignore: Array<string>
}
baseDir : string
baseURL: string
client: () => ClientConfig
}
export interface CacheManifest {
availableTemplates: StringMap
templateManifest: TemplateManifest
getPropsManifest: GetPropsManifest
typeAncestry: TypeAncestryManifest
queryManifest: QueryManifest
}
export interface ProjectState {
cacheManifest: CacheManifest
projectConfig: ProjectConfig
}