UNPKG

piral-axios

Version:

Plugin for the integration of axios in Piral.

12 lines (11 loc) 272 B
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; }