Files
FrenoCorp/node_modules/@trpc/client/dist/splitLink.d-CkHNg1Se.d.mts
Michael Freno 7c684a42cc FRE-600: Fix code review blockers
- Consolidated duplicate UndoManagers to single instance
- Fixed connection promise to only resolve on 'connected' status
- Fixed WebSocketProvider import (WebsocketProvider)
- Added proper doc.destroy() cleanup
- Renamed isPresenceInitialized property to avoid conflict

Co-Authored-By: Paperclip <noreply@paperclip.ing>
2026-04-25 00:08:01 -04:00

20 lines
691 B
TypeScript

import { Operation, TRPCLink } from "./types.d-CAr6snH0.mjs";
import { AnyRouter } from "@trpc/server/unstable-core-do-not-import";
//#region src/links/splitLink.d.ts
declare function splitLink<TRouter extends AnyRouter = AnyRouter>(opts: {
condition: (op: Operation) => boolean;
/**
* The link to execute next if the test function returns `true`.
*/
true: TRPCLink<TRouter> | TRPCLink<TRouter>[];
/**
* The link to execute next if the test function returns `false`.
*/
false: TRPCLink<TRouter> | TRPCLink<TRouter>[];
}): TRPCLink<TRouter>;
//# sourceMappingURL=splitLink.d.ts.map
//#endregion
export { splitLink };
//# sourceMappingURL=splitLink.d-CkHNg1Se.d.mts.map