mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +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++}`;
|
||||
|
||||
if (i18n) {
|
||||
const locales = {};
|
||||
const locales: Record<string, any> = {};
|
||||
const camelizedName = camelize(demoName);
|
||||
|
||||
Object.keys(i18n).forEach((key) => {
|
||||
|
@ -5,7 +5,7 @@ import locale from '../../locale';
|
||||
export function createTranslate(name: string) {
|
||||
const prefix = camelize(name) + '.';
|
||||
|
||||
return function (path: string, ...args: any[]): string {
|
||||
return function (path: string, ...args: any[]): any {
|
||||
const messages = locale.messages();
|
||||
const message = get(messages, prefix + path) || get(messages, path);
|
||||
|
||||
|
@ -9,15 +9,11 @@
|
||||
"noEmit": true,
|
||||
"noImplicitThis": true,
|
||||
"esModuleInterop": true,
|
||||
"moduleResolution": "node"
|
||||
},
|
||||
"include": [
|
||||
"types/**/*",
|
||||
"src/**/*"
|
||||
],
|
||||
"exclude": [
|
||||
"**/*.spec.ts",
|
||||
"**/*.spec.js",
|
||||
"node_modules"
|
||||
]
|
||||
"moduleResolution": "node",
|
||||
"paths": {
|
||||
"@demo/*": ["docs/site/*"]
|
||||
}
|
||||
},
|
||||
"include": ["types/**/*", "docs/**/*", "src/**/*"],
|
||||
"exclude": ["**/*.spec.ts", "**/*.spec.js", "node_modules"]
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user