blob: 094d8ca87970de611ab7c63813d2bd42a8098102 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import { NexeTarget } from './target';
export { NexeTarget };
export interface GitAsset {
name: string;
url: string;
browser_download_url: string;
}
export interface GitRelease {
tag_name: string;
assets_url: string;
upload_url: string;
assets: GitAsset[];
}
export declare function getLatestGitRelease(options?: any): Promise<GitRelease>;
export declare function getUnBuiltReleases(options?: any): Promise<NexeTarget[]>;
|