Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | 12x 12x 12x 12x 1x 1x 1x 1x 1x 1x 1x 1x 1x 12x | import { Encounter, Hero, ModularSet, Scenario } from "../@models";
import { EncountersService, HeroesService, ModularSetsService, ScenariosService } from ".";
export const load = async (): Promise<[Encounter[], Hero[], ModularSet[], Scenario[]]> => {
// load json data
const encountersService = new EncountersService();
const encounters = await encountersService.load();
const heroesService = new HeroesService();
const heroes = await heroesService.load();
const modulesService = new ModularSetsService();
const modules = await modulesService.load();
const scenariosService = new ScenariosService();
const scenarios = await scenariosService.load();
return [encounters, heroes, modules, scenarios];
};
|