init repo
This commit is contained in:
16
dist/index.cjs.js
vendored
Normal file
16
dist/index.cjs.js
vendored
Normal 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
6
dist/index.d.ts
vendored
Normal 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
14
dist/index.es.js
vendored
Normal 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 };
|
||||
Reference in New Issue
Block a user