mirror of
https://github.com/Frooodle/Stirling-PDF.git
synced 2025-11-16 01:21:16 +01:00
# Description of Changes Move frontend code into `core` folder and add infrastructure for `proprietary` folder to include premium, non-OSS features
14 lines
387 B
TypeScript
14 lines
387 B
TypeScript
export interface AlphabetOption {
|
|
value: string;
|
|
label: string;
|
|
}
|
|
|
|
export const alphabetOptions: AlphabetOption[] = [
|
|
{ value: "roman", label: "Roman" },
|
|
{ value: "arabic", label: "العربية" },
|
|
{ value: "japanese", label: "日本語" },
|
|
{ value: "korean", label: "한국어" },
|
|
{ value: "chinese", label: "简体中文" },
|
|
{ value: "thai", label: "ไทย" },
|
|
];
|