Files
UpdaterWebLibrary/dist/index.d.ts
2025-10-30 22:56:11 +00:00

13 lines
370 B
TypeScript

import * as types from "@/types";
export default class Updater {
archiveURL: string;
feedType: string;
constructor(archiveURL?: string, feedType?: string);
private getRawArchive;
private atomGetVersionDetails;
private atomGetArchive;
private rssGetVersionDetails;
private rssGetArchive;
getArchive(): Promise<types.versionNotes[]>;
}