| 25 | |
| 26 | /** This protocol is for transferring data from the two peer univer instance running in different locations. */ |
| 27 | export interface IMessageProtocol { |
| 28 | send(message: any): void; |
| 29 | onMessage: Observable<any>; |
| 30 | } |
| 31 | |
| 32 | // TODO: change this parameter type to `Serializable`. |
| 33 |
no outgoing calls
no test coverage detected