UNPKG

@bscotch/gamemaker-releases

Version:

Utility for combining GameMaker release data into a single feed.

6 lines 293 B
export type Validator<T> = { parse: (data: any) => T; }; export declare function fetchXml<T = unknown>(url: string, validator?: Validator<T>): Promise<T>; export declare function fetchJson<T = unknown>(url: string, validator?: Validator<T>): Promise<T>; //# sourceMappingURL=fetch.d.ts.map