()
| 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>; |
| 26 | pullHints(originalInput?: I): Promise<O | undefined>; |
no outgoing calls
no test coverage detected