This commit is contained in:
Travis Fischer
2022-04-07 14:53:08 -04:00
parent 679131ad22
commit 45b20d9622
10 changed files with 196 additions and 86 deletions

View File

@@ -67,20 +67,3 @@ export interface PageUrlOverridesInverseMap {
// (this overrides the built-in URL path generation for these pages)
[pageId: string]: string
}
export interface PreviewImage {
url: string
originalWidth: number
originalHeight: number
width: number
height: number
type: string
dataURIBase64: string
error?: string
statusCode?: number
}
export interface PreviewImageMap {
[url: string]: PreviewImage
}