UNPKG

imba-shell

Version:

Interactive debugger and REPL for Imba.

16 lines (10 loc) 343 B
export default UpdateNotifier; declare class UpdateNotifier { package: string; directory: string; shouldFetchLatestVersion(): number | true; compareVersion(latestVersion: string): boolean | 0; fetchLatestVersion(): string | null; storeVersion(data: string): void; check(callback?: Function | boolean): void; }