@jsynple/core
Version:
All the core modules and types for the Synple application
8 lines (7 loc) • 343 B
TypeScript
import { ListService } from "./ListService";
import { Generator } from "../../types";
import { Requestable } from "../../network/Api";
import { GeneratorDescription } from "../../types/Generator";
export declare class GeneratorsService extends ListService<Generator, GeneratorDescription> {
constructor(api: Requestable, token: string);
}