ethers.js/misc/admin/lib/github.d.ts

5 lines
439 B
TypeScript
Raw Normal View History

export declare function fetchGitHub(user: string, password: string, url: string, cacheOnly?: boolean): Promise<any[]>;
export declare function getIssues(): Promise<Array<any>>;
export declare function syncIssues(user: string, password: string): Promise<Array<any>>;
2020-10-03 09:20:50 +03:00
export declare function createRelease(user: string, password: string, tagName: string, title: string, body: string, prerelease?: boolean, commit?: string): Promise<string>;