denoify
Version:
For NPM module authors that would like to support Deno but do not want to write and maintain a port.
10 lines (9 loc) • 309 B
TypeScript
export declare function listTags(params: {
owner: string;
repo: string;
}): AsyncGenerator<string>;
/** Returns the same "latest" tag as deno.land/x, not actually the latest though */
export declare function getLatestTag(params: {
owner: string;
repo: string;
}): Promise<string | undefined>;