Files
UpdaterWebLibrary/dist/index.d.ts
2025-10-21 22:18:18 +01:00

7 lines
169 B
TypeScript

export default class Updater {
archiveURL: string;
feedType: string;
constructor(archiveURL?: string, feedType?: string);
getArchive(): Promise<void>;
}