8 lines
304 B
TypeScript
8 lines
304 B
TypeScript
import type { IConnection } from '../connection';
|
|
import type { IConnectionRef } from '../events.generated';
|
|
/**
|
|
* Convert an IConnectionRef to IConnection, validating that it implements the full interface
|
|
* @internal
|
|
*/
|
|
export declare function toIConnection(connection: IConnectionRef): IConnection;
|