UNPKG

laravel-jstools

Version:

JS tools for building front-side of Laravel applications

12 lines (11 loc) 574 B
import { Service } from 'laravel-jstools-di'; import { AxiosServiceContract } from './contracts/AxiosServiceContract'; import { CallbackListInterface } from './interfaces/CallbackListInterface'; import { FormContract } from '../../entities/Form/contracts/FormContract'; export declare class AxiosService extends Service implements AxiosServiceContract { protected serviceDependsList: string[]; send(config: any, callbackList: CallbackListInterface, showNoty?: boolean, form?: FormContract): Promise<{ result: boolean; data: any; }>; }