UNPKG

@rocket.chat/apps-engine

Version:

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

13 lines (12 loc) 321 B
import type { IAppInfo } from '../../definition/metadata'; import type { AppImplements } from './AppImplements'; export interface IParseAppPackageResult { info: IAppInfo; files: { [key: string]: string; }; languageContent: { [key: string]: object; }; implemented: AppImplements; }