-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathvirtual.d.ts
More file actions
32 lines (29 loc) · 788 Bytes
/
Copy pathvirtual.d.ts
File metadata and controls
32 lines (29 loc) · 788 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
declare module 'virtual:i18n-ally-async-resource' {
interface I18nAllyAsyncResource {
[lng__ns: string]: () => Promise<{ default: Record<string, any> | undefined }>
}
const resources: I18nAllyAsyncResource
export { resources }
}
declare module 'virtual:i18n-ally-resource' {
interface I18nAllyResource {
[lng: string]: Record<string, any>
}
const resources: I18nAllyResource
export { resources }
}
declare module 'virtual:i18n-ally-empty-resource' {
interface I18nAllyEmptyResource {
[lng__ns: string]: object
}
const resources: I18nAllyEmptyResource
export { resources }
}
declare module 'virtual:i18n-ally-config' {
interface I18nAllyConfig {
namespace: boolean
separator: string
}
const config: I18nAllyConfig
export { config }
}