UNPKG

@rocket.chat/apps-engine

Version:

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

15 lines (14 loc) 331 B
export interface IInternalFederationBridge { /** * Get Federation's private key. * For apps engine's internal use * */ getPrivateKey(): Promise<string | null>; /** * Get Federation's public key. * For apps engine's internal use * */ getPublicKey(): Promise<string | null>; }