mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-24 09:25:15 +00:00
14 lines
579 B
TypeScript
14 lines
579 B
TypeScript
import type { QueryCacheKey } from './core/apiState';
|
|
import type { EndpointDefinition } from './endpointDefinitions';
|
|
export declare const defaultSerializeQueryArgs: SerializeQueryArgs<any>;
|
|
export declare type SerializeQueryArgs<QueryArgs> = (_: {
|
|
queryArgs: QueryArgs;
|
|
endpointDefinition: EndpointDefinition<any, any, any, any>;
|
|
endpointName: string;
|
|
}) => string;
|
|
export declare type InternalSerializeQueryArgs = (_: {
|
|
queryArgs: any;
|
|
endpointDefinition: EndpointDefinition<any, any, any, any>;
|
|
endpointName: string;
|
|
}) => QueryCacheKey;
|