* Get cached translations for a locale * Returns empty object if no cache exists
(locale: LocaleCode)
| 18 | * Returns empty object if no cache exists |
| 19 | */ |
| 20 | get(locale: LocaleCode): Promise<Record<string, string>>; |
| 21 | get(locale: LocaleCode, hashes: string[]): Promise<Record<string, string>>; |
| 22 | |
| 23 | /** |
no outgoing calls