@bscotch/gamemaker-releases
Version:
Utility for combining GameMaker release data into a single feed.
16 lines • 619 B
TypeScript
import { RssFeedEntry, type GameMakerArtifact } from './feeds.types.js';
/**
* Get the runtime with the closest release date to the given IDE
*/
export declare function findPairedRuntime(runtimeFeed: GameMakerArtifact[], ide: GameMakerArtifact): {
type: "ide" | "runtime";
version: string;
channel: "lts" | "stable" | "beta" | "unstable";
feedUrl: string;
publishedAt: string;
notesUrl: string;
summary?: string | undefined;
link?: string | undefined;
} | undefined;
export declare function downloadRssFeed(url: string): Promise<RssFeedEntry[]>;
//# sourceMappingURL=feeds.lib.d.ts.map