You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
488 B
14 lines
488 B
export declare type Release = {
|
|
version: string;
|
|
changelogUrl: string;
|
|
diffUrl: string;
|
|
};
|
|
/**
|
|
* Checks via GitHub API if there is a newer stable React Native release and,
|
|
* if it exists, returns the release data.
|
|
*
|
|
* If the latest release is not newer or if it's a prerelease, the function
|
|
* will return undefined.
|
|
*/
|
|
export default function getLatestRelease(name: string, currentVersion: string): Promise<Release | void>;
|
|
//# sourceMappingURL=getLatestRelease.d.ts.map
|