UNPKG

@rocket.chat/apps-engine

Version:

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

11 lines (10 loc) 260 B
export interface IPermission { name: string; required?: boolean; } export interface INetworkingPermission extends IPermission { domains: Array<string>; } export interface IWorkspaceTokenPermission extends IPermission { scopes: Array<string>; }