Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/graphql-toolset / dist / config.d.ts
Size: Mime:
export interface Config extends Map<string, any> {
    get(key: 'cookie'): string;
    set(key: 'cookie', value: string): this;
    get(key: 'cookies'): string[];
    set(key: 'cookies', value: string[]): this;
    get(key: 'cookiesIndexed'): {
        [key: string]: string;
    };
    set(key: 'cookiesIndexed', value: {
        [key: string]: string;
    }): this;
}
export declare const config: Config;