purewhiter--mobilegym
9 行
186 B
TypeScript
9 行
186 B
TypeScript
/**
|
|
* Calculator 字符串资源 — 对应 AOSP res/values/strings.xml
|
|
*/
|
|
export const strings = {
|
|
app_name: '计算器',
|
|
} as const;
|
|
|
|
export type StringKey = keyof typeof strings;
|