10 lines
277 B
TypeScript
10 lines
277 B
TypeScript
import * as types from "@/types";
|
|
export default class Updater {
|
|
archiveURL: string;
|
|
feedType: string;
|
|
constructor(archiveURL?: string, feedType?: string);
|
|
private getRawArchive;
|
|
private getVersionDetails;
|
|
getArchive(): Promise<types.versionNotes[]>;
|
|
}
|