UNPKG

178 BTypeScriptView Raw
1import { Transport } from '../enums';
2export interface CustomTransportStrategy {
3 readonly transportId?: Transport;
4 listen(callback: () => void): any;
5 close(): any;
6}