/
githubmirror
/
strapi
Обзор
Документация
Войти
/
githubmirror
/
strapi
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
packages/core/upload/admin/src/enums.ts
17 строк
350 B
Andrei L
chore(typescript): enable erasableSyntaxOnly and noUncheckedSideEffectImports (#26790)
27 июн 2026, 18:00
Не верифицирован
27 июн 2026, 18:00
0939748
Код
Авторство
О чём код?
export const DOC_TYPES = { Pdf: 'pdf', Csv: 'csv', Xls: 'xls', Zip: 'zip', } as const; export type DocType = (typeof DOC_TYPES)[keyof typeof DOC_TYPES]; export const ASSET_TYPES = { Video: 'video', Image: 'image', Document: 'doc', Audio: 'audio', } as const; export type AssetType = (typeof ASSET_TYPES)[keyof typeof ASSET_TYPES];