2020-12-08 09:38:32 +03:00
|
|
|
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>;
|