move all script into the same file
This commit is contained in:
9
dist/index.d.ts
vendored
9
dist/index.d.ts
vendored
@@ -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
6
dist/types.d.ts
vendored
@@ -1,6 +0,0 @@
|
||||
export type versionNotes = {
|
||||
title: string;
|
||||
date: Date | string;
|
||||
link: string;
|
||||
html: string;
|
||||
};
|
||||
Reference in New Issue
Block a user