UNPKG

faker-api

Version:

A fully customizible rest api faking package that allows you to mock , clone and fake Rest API with fake yet realistic data

7 lines 287 B
import { Request } from "express"; import { ParamsType } from "./../core"; declare abstract class AbstractModel { abstract generate(request?: Request, params?: ParamsType): object | any[] | string | number; } export default AbstractModel; //# sourceMappingURL=abstract-model.d.ts.map