(name: SupportedLang)
| 73 | } |
| 74 | |
| 75 | public async getQueryForLang(name: SupportedLang): Promise<Query> { |
| 76 | const resources = await this.getResources(name); |
| 77 | return resources.query; |
| 78 | } |
| 79 | |
| 80 | public async getStrategyForLang(name: SupportedLang): Promise<ParseStrategy> { |
| 81 | const resources = await this.getResources(name); |
no test coverage detected