UNPKG

react-query

Version:

Hooks for managing, caching and syncing asynchronous and remote data in React

9 lines (8 loc) 205 B
export interface Logger { log: LogFunction; warn: LogFunction; error: LogFunction; } declare type LogFunction = (...args: any[]) => void; export declare const defaultLogger: Logger; export {};