Chore: Fix rocketchat interface (#3705)

This commit is contained in:
Gleidson Daniel Silva 2022-02-09 16:47:59 -03:00 committed by GitHub
parent d874012e61
commit 7a5a085067
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 3 deletions

View File

@ -1,5 +1,7 @@
import { Rocketchat } from '@rocket.chat/sdk';
import rocketchat from '../lib/rocketchat';
export interface IRocketChat {
sdk: typeof Rocketchat;
type TRocketChat = typeof rocketchat;
export interface IRocketChat extends TRocketChat {
sdk: any;
}