Include build output for git installs
This commit is contained in:
+20
@@ -0,0 +1,20 @@
|
||||
import { CookieJar } from 'tough-cookie';
|
||||
import type { CookieEncryptor, CookieStore, Logger } from '../types';
|
||||
interface FileCookieStoreOptions {
|
||||
encryptor?: CookieEncryptor;
|
||||
logger?: Logger;
|
||||
}
|
||||
export declare class FileCookieStore implements CookieStore {
|
||||
private readonly filePath;
|
||||
private readonly options;
|
||||
private static readonly sharedJars;
|
||||
constructor(filePath: string, options?: FileCookieStoreOptions);
|
||||
load(): Promise<CookieJar>;
|
||||
save(cookieJar: CookieJar): Promise<void>;
|
||||
clear(): Promise<void>;
|
||||
private isEncryptedCookieFile;
|
||||
private cookieJarFromJson;
|
||||
private remember;
|
||||
}
|
||||
export {};
|
||||
//# sourceMappingURL=FileCookieStore.d.ts.map
|
||||
Reference in New Issue
Block a user