24 lines
579 B
TypeScript
24 lines
579 B
TypeScript
|
interface InitConverseParams {
|
||
|
isRemoteChat: boolean
|
||
|
localAnonymousJID: string
|
||
|
remoteAnonymousJID: string | null
|
||
|
remoteAnonymousXMPPServer: boolean
|
||
|
remoteAuthenticatedXMPPServer: boolean
|
||
|
assetsPath: string
|
||
|
room: string
|
||
|
localBoshServiceUrl: string | null
|
||
|
localWebsocketServiceUrl: string | null
|
||
|
remoteBoshServiceUrl: string | null
|
||
|
remoteWebsocketServiceUrl: string | null
|
||
|
authenticationUrl: string
|
||
|
autoViewerMode: boolean
|
||
|
forceReadonly: boolean | 'noscroll'
|
||
|
noScroll: boolean
|
||
|
theme: string
|
||
|
transparent: boolean
|
||
|
}
|
||
|
|
||
|
export {
|
||
|
InitConverseParams
|
||
|
}
|