15 lines
541 B
TypeScript
15 lines
541 B
TypeScript
import { AxiosInstance } from 'axios';
|
|
import Config from '../config/Config';
|
|
import AbstractRequest from './AbstractRequest';
|
|
export default class VendorsRequest extends AbstractRequest {
|
|
entityPath: string;
|
|
prefix: string;
|
|
handlerParams: any;
|
|
params: any;
|
|
constructor(client: AxiosInstance, config: Config);
|
|
protected buildUrl(): string;
|
|
getForm(): Promise<import("axios").AxiosResponse<any>>;
|
|
create(data: any): Promise<import("axios").AxiosResponse<any>>;
|
|
protected setParams(): void;
|
|
}
|