| 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 |