The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Rocket.Chat/packages/apps-engine/tests/test-data/bridges/uiIntegrationBridge.ts

9 lines
434 B

import type { IUIKitInteractionParam } from '../../../src/definition/accessors/IUIController';
import type { IUser } from '../../../src/definition/users';
import { UiInteractionBridge } from '../../../src/server/bridges';
export class TestsUiIntegrationBridge extends UiInteractionBridge {
public async notifyUser(user: IUser, interaction: IUIKitInteractionParam, appId: string) {
throw new Error('Method not implemented.');
}
}