UNPKG

@jsynple/core

Version:

All the core modules and types for the Synple application

8 lines (7 loc) 248 B
import { ListService } from "./ListService"; import { GeneratorsRepository } from "../../repositories"; export class GeneratorsService extends ListService { constructor(api, token) { super(new GeneratorsRepository(api), token); } }