"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.MemoryCookieStore = void 0; const tough_cookie_1 = require("tough-cookie"); class MemoryCookieStore { cookieJar = new tough_cookie_1.CookieJar(); async load() { return this.cookieJar; } async save(cookieJar) { this.cookieJar = cookieJar; } async clear() { this.cookieJar = new tough_cookie_1.CookieJar(); } } exports.MemoryCookieStore = MemoryCookieStore; //# sourceMappingURL=MemoryCookieStore.js.map