mirror of https://github.com/buster-so/buster.git
8 lines
161 B
TypeScript
8 lines
161 B
TypeScript
|
import type { RustApiError } from './buster_rest/errors';
|
||
|
|
||
|
declare module '@tanstack/react-query' {
|
||
|
interface Register {
|
||
|
defaultError: RustApiError;
|
||
|
}
|
||
|
}
|