UNPKG

enum-plus

Version:

A drop-in replacement for native enum. Like native enum but much better!

16 lines (15 loc) 444 B
import type { LocalizeInterface } from './localize-interface'; export declare const localizer: { /** * - **EN:** Convert resource key to localized text * - **CN:** 把资源键值转化为本地化文本 */ localize?: LocalizeInterface; }; /** Internal module, do not use. */ export declare const internalConfig: { autoLabel?: boolean | ((options: { item: any; labelPrefix: any; }) => string); };