nexe
Version:
Create a single executable out of your Node.js application
16 lines (15 loc) • 450 B
TypeScript
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[]>;