@graphql-hive/cli
Version:
A CLI util to manage and control your GraphQL Hive
18 lines (17 loc) • 482 B
TypeScript
export declare const graphqlEndpoint = "https://app.graphql-hive.com/graphql";
export declare class Config<TValue = any> {
private cache?;
private filepath;
constructor({ filepath, rootDir }: {
filepath?: string;
rootDir: string;
});
has(key: string): boolean;
get(key: string): TValue;
set(key: string, value: TValue): void;
delete(key: string): void;
clear(): void;
private readSpace;
private read;
private write;
}