Include build output for git installs

This commit is contained in:
2026-05-21 21:20:20 +02:00
parent b47cbc00a8
commit 921c67503b
30 changed files with 733 additions and 1 deletions
+18
View File
@@ -0,0 +1,18 @@
"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