Files
2026-05-06 18:55:16 -05:00

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;