init repo

This commit is contained in:
2025-10-21 22:18:18 +01:00
parent 09affd5191
commit fb8ff229c9
8 changed files with 130 additions and 0 deletions

16
dist/index.cjs.js vendored Normal file
View File

@@ -0,0 +1,16 @@
'use strict';
class Updater {
archiveURL;
feedType;
constructor(archiveURL = "/", feedType = "rss") {
this.archiveURL = archiveURL;
this.feedType = feedType;
}
async getArchive() {
const res = await fetch(`${this.archiveURL}.${this.feedType}`);
console.log(res);
}
}
module.exports = Updater;

6
dist/index.d.ts vendored Normal file
View File

@@ -0,0 +1,6 @@
export default class Updater {
archiveURL: string;
feedType: string;
constructor(archiveURL?: string, feedType?: string);
getArchive(): Promise<void>;
}

14
dist/index.es.js vendored Normal file
View File

@@ -0,0 +1,14 @@
class Updater {
archiveURL;
feedType;
constructor(archiveURL = "/", feedType = "rss") {
this.archiveURL = archiveURL;
this.feedType = feedType;
}
async getArchive() {
const res = await fetch(`${this.archiveURL}.${this.feedType}`);
console.log(res);
}
}
export { Updater as default };