UNPKG

fetch-github-release

Version:
9 lines (8 loc) 347 B
import { RepoInfo } from './types'; interface IsUpdateAvailableOptions extends RepoInfo { currentVersion: string; accessToken?: string; } export declare function isUpdateAvailable(options: IsUpdateAvailableOptions): Promise<boolean>; export declare function newerVersion(latestVersion: string, currentVersion: string): boolean; export {};