Repository URL to install this package:
|
Version:
0.0.6 ▾
|
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;