mirror of
https://github.com/vale981/apollo-server
synced 2025-03-15 23:36:40 -04:00
4 lines
133 B
TypeScript
4 lines
133 B
TypeScript
export interface PersistedQueryCache {
|
|
set(key: string, data: string): Promise<any>;
|
|
get(key: string): Promise<string | null>;
|
|
}
|