(locale: string)
| 20 | |
| 21 | export interface ILoader<I, O, C = void> extends ILoaderDefinition<I, O, C> { |
| 22 | setDefaultLocale(locale: string): this; |
| 23 | init(): Promise<C>; |
| 24 | pull(locale: string, input: I): Promise<O>; |
| 25 | push(locale: string, data: O): Promise<I>; |
no outgoing calls