functional initial version

This commit is contained in:
2025-10-30 16:19:38 +00:00
parent 0bcba44b1d
commit 7893dce549
10 changed files with 155 additions and 12 deletions

5
dist/index.d.ts vendored
View File

@@ -1,6 +1,9 @@
import * as types from "@/types";
export default class Updater {
archiveURL: string;
feedType: string;
constructor(archiveURL?: string, feedType?: string);
getArchive(): Promise<Response>;
private getRawArchive;
private getVersionDetails;
getArchive(): Promise<types.versionNotes[]>;
}