UNPKG

piral-axios

Version:

Plugin for the integration of axios in Piral.

14 lines (11 loc) 293 B
import type {} from 'piral-core'; import type { AxiosInstance } from 'axios'; declare module 'piral-core/lib/types/custom' { interface PiletCustomApi extends PiletAxiosApi {} } export interface PiletAxiosApi { /** * Gets the associated axios instance. */ axios: AxiosInstance; }