Files
pangolin/src/types/tanstack-query.d.ts
Fred KISSIE bf987d867c 🚧 WIP
2025-12-03 19:28:07 +01:00

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;
}
}