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.
11 lines
338 B
11 lines
338 B
/** @deprecated just use the update-check npm package */
|
|
declare function createModuleVersionChecker(name: string, currentVersion: string): {
|
|
checkAsync: () => Promise<{
|
|
updateIsAvailable: boolean;
|
|
latest: string;
|
|
current: string;
|
|
deprecated: unknown;
|
|
}>;
|
|
};
|
|
export { createModuleVersionChecker };
|