返回 oh-my-ppt
thumbnail.ts
根目录 / src / shared / thumbnail.ts
1 export const HTML_THUMBNAIL_RESOURCE_TYPES = [
2 'session',
3 'style',
4 'template',
5 'html-editor'
6 ] as const
7
8 export type HtmlThumbnailResourceType = (typeof HTML_THUMBNAIL_RESOURCE_TYPES)[number]
9
10 export const TEMPLATE_THUMBNAIL_RESOURCE_TYPE: HtmlThumbnailResourceType = 'template'
11
11 lines TYPESCRIPT