mirror of
https://github.com/billsonnn/nitro-renderer.git
synced 2025-02-22 20:32:36 +01:00
9 lines
298 B
TypeScript
9 lines
298 B
TypeScript
|
import { IDisposable } from '../common';
|
||
|
import { IConnection } from './IConnection';
|
||
|
import { IConnectionStateListener } from './IConnectionStateListener';
|
||
|
|
||
|
export interface ICommunicationManager extends IDisposable
|
||
|
{
|
||
|
createConnection(stateListener?: IConnectionStateListener): IConnection;
|
||
|
}
|