ethers.js/misc/admin/lib/github.d.ts
2020-12-08 01:38:32 -05:00

5 lines
439 B
TypeScript

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>>;
export declare function createRelease(user: string, password: string, tagName: string, title: string, body: string, prerelease?: boolean, commit?: string): Promise<string>;