UNPKG

@rocket.chat/apps-engine

Version:

The engine code for the Rocket.Chat Apps which manages, runs, translates, coordinates and all of that.

8 lines (7 loc) 485 B
import type { IParseAppPackageResult } from '../../compiler'; /** * Some legacy apps that might be installed in workspaces have not been bundled after compilation, * leading to multiple files being sent to the subprocess and requiring further logic to require one another. * This makes running the app in the Deno Runtime much more difficult, so instead we bundle the files at runtime. */ export declare function bundleLegacyApp(appPackage: IParseAppPackageResult): Promise<void>;