import Nomalism from '@nomalism-com/types'; import { IModuleConstructor } from '../../main'; export default class Repository implements Nomalism.SchedulePrintJob.IRepository { route: string; private api; constructor({ api, route }: IModuleConstructor); create(body: Nomalism.SchedulePrintJob.ICreateSchedulePrintJobRequest): Promise; createMany(body: Nomalism.SchedulePrintJob.ICreateManySchedulePrintJobRequest): Promise; deleteOne(selector: Nomalism.shared.IFindByIdRequest): Promise; dispatchSchedulePrintJob(body: Nomalism.SchedulePrintJob.IDispatchSchedulePrintJobRequest): Promise; findByOwner(params: Nomalism.shared.IFindByOwnerIdRequest): Promise; }