UNPKG

@rocket.chat/apps-engine

Version:

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

21 lines (20 loc) 615 B
import type { AppInterface } from './AppInterface'; import type { IAppAuthorInfo } from './IAppAuthorInfo'; import type { IPermission } from '../permissions/IPermission'; export interface IAppInfo { id: string; name: string; nameSlug: string; version: string; description: string; requiredApiVersion: string; author: IAppAuthorInfo; classFile: string; iconFile: string; implements: Array<AppInterface>; /** Base64 string of the App's icon. */ iconFileContent?: string; essentials?: Array<AppInterface>; permissions?: Array<IPermission>; addon?: string; }