//#region src/links/internals/subscriptions.d.ts interface ConnectionStateBase { type: 'state'; data?: never; error: TError | null; } interface ConnectionIdleState extends ConnectionStateBase { state: 'idle'; } interface ConnectionConnectingState extends ConnectionStateBase { state: 'connecting'; } interface ConnectionPendingState extends ConnectionStateBase { state: 'pending'; } type TRPCConnectionState = ConnectionIdleState | ConnectionConnectingState | ConnectionPendingState; //#endregion export { TRPCConnectionState }; //# sourceMappingURL=subscriptions.d-Dlr1nWGD.d.mts.map