mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
types: fix translate typing
This commit is contained in:
parent
09858eb1d3
commit
d38e4a6aa8
@ -8,7 +8,7 @@ export function useTranslate(i18n: Record<string, any>) {
|
|||||||
const demoName = `demo-i18n-${demoUid++}`;
|
const demoName = `demo-i18n-${demoUid++}`;
|
||||||
|
|
||||||
if (i18n) {
|
if (i18n) {
|
||||||
const locales = {};
|
const locales: Record<string, any> = {};
|
||||||
const camelizedName = camelize(demoName);
|
const camelizedName = camelize(demoName);
|
||||||
|
|
||||||
Object.keys(i18n).forEach((key) => {
|
Object.keys(i18n).forEach((key) => {
|
||||||
|
@ -5,7 +5,7 @@ import locale from '../../locale';
|
|||||||
export function createTranslate(name: string) {
|
export function createTranslate(name: string) {
|
||||||
const prefix = camelize(name) + '.';
|
const prefix = camelize(name) + '.';
|
||||||
|
|
||||||
return function (path: string, ...args: any[]): string {
|
return function (path: string, ...args: any[]): any {
|
||||||
const messages = locale.messages();
|
const messages = locale.messages();
|
||||||
const message = get(messages, prefix + path) || get(messages, path);
|
const message = get(messages, prefix + path) || get(messages, path);
|
||||||
|
|
||||||
|
@ -9,15 +9,11 @@
|
|||||||
"noEmit": true,
|
"noEmit": true,
|
||||||
"noImplicitThis": true,
|
"noImplicitThis": true,
|
||||||
"esModuleInterop": true,
|
"esModuleInterop": true,
|
||||||
"moduleResolution": "node"
|
"moduleResolution": "node",
|
||||||
},
|
"paths": {
|
||||||
"include": [
|
"@demo/*": ["docs/site/*"]
|
||||||
"types/**/*",
|
}
|
||||||
"src/**/*"
|
},
|
||||||
],
|
"include": ["types/**/*", "docs/**/*", "src/**/*"],
|
||||||
"exclude": [
|
"exclude": ["**/*.spec.ts", "**/*.spec.js", "node_modules"]
|
||||||
"**/*.spec.ts",
|
|
||||||
"**/*.spec.js",
|
|
||||||
"node_modules"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user