move all script into the same file

This commit is contained in:
2025-10-30 23:02:03 +00:00
parent 2a942d8fc9
commit eac14571e2
5 changed files with 23 additions and 25 deletions

9
dist/index.d.ts vendored
View File

@@ -1,4 +1,9 @@
import * as types from "@/types";
export type versionNotes = {
title: string;
date: Date | string;
link: string;
html: string;
};
export default class Updater {
archiveURL: string;
feedType: string;
@@ -8,5 +13,5 @@ export default class Updater {
private atomGetArchive;
private rssGetVersionDetails;
private rssGetArchive;
getArchive(): Promise<types.versionNotes[]>;
getArchive(): Promise<versionNotes[]>;
}

6
dist/types.d.ts vendored
View File

@@ -1,6 +0,0 @@
export type versionNotes = {
title: string;
date: Date | string;
link: string;
html: string;
};