mirror of
https://github.com/fosrl/pangolin.git
synced 2026-02-02 16:19:08 +00:00
14 lines
280 B
TypeScript
14 lines
280 B
TypeScript
import "@tanstack/react-query";
|
|
import type { AxiosInstance } from "axios";
|
|
|
|
interface Meta extends Record<string, unknown> {
|
|
api: AxiosInstance;
|
|
}
|
|
|
|
declare module "@tanstack/react-query" {
|
|
interface Register {
|
|
queryMeta: Meta;
|
|
mutationMeta: Meta;
|
|
}
|
|
}
|