aemfed
Version:
Upload front-end changes into AEM, refresh relevant resources in the page and get instant notifications from the error.log, all for easier and faster development.
14 lines (13 loc) • 312 B
TypeScript
interface IConfig {
interval: number;
distTag: string;
url: string;
}
export interface IUpdateCheck {
fromCache: boolean;
latest: string;
name: string;
version: string;
}
export declare function check(packageInfo: any, config?: IConfig): Promise<IUpdateCheck | undefined>;
export {};