(locale: string)
| 10 | } |
| 11 | }, |
| 12 | setDefaultLocale(locale: string) { |
| 13 | for (const loader of loaders) { |
| 14 | loader.setDefaultLocale?.(locale); |
| 15 | } |
| 16 | return this; |
| 17 | }, |
| 18 | pull: async (locale, input) => { |
| 19 | let result: any = input; |
| 20 | for (let i = 0; i < loaders.length; i++) { |
nothing calls this directly
no test coverage detected