mirror of
https://github.com/Ku6epXBOCTuK/easy-png-tools.git
synced 2026-09-14 21:46:35 +00:00
25 lines
475 B
TypeScript
25 lines
475 B
TypeScript
export type CategoryId =
|
|
| "convert"
|
|
| "alpha"
|
|
| "color"
|
|
| "geometry"
|
|
| "analyze"
|
|
| "generate"
|
|
| "filters"
|
|
| "text";
|
|
|
|
/**
|
|
* Порядок категорий в каталоге. Человекочитаемые названия живут в словарях
|
|
* i18n: секция categories, ключ = CategoryId.
|
|
*/
|
|
export const CATEGORIES: readonly CategoryId[] = [
|
|
"convert",
|
|
"alpha",
|
|
"color",
|
|
"geometry",
|
|
"filters",
|
|
"text",
|
|
"analyze",
|
|
"generate",
|
|
];
|