UNPKG

@rocket.chat/apps-engine

Version:

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

10 lines (9 loc) 285 B
export interface IInternalPersistenceBridge { /** * Purges the App's persistant storage data from the persistent storage. * For apps engine's internal use * * @argument appId the id of the app's data to remove */ purge(appId: string): Promise<void>; }