@rocket.chat/apps-engine
Version:
The engine code for the Rocket.Chat Apps which manages, runs, translates, coordinates and all of that.
12 lines (11 loc) • 490 B
TypeScript
import type { AppManager } from '../AppManager';
import type { IMarketplaceInfo } from '../marketplace';
import type { AppLicenseValidationResult } from '../marketplace/license';
export declare class AppLicenseManager {
private readonly manager;
private readonly crypto;
private readonly userBridge;
constructor(manager: AppManager);
validate(validationResult: AppLicenseValidationResult, appMarketplaceInfo?: IMarketplaceInfo): Promise<void>;
private validateV1;
}