CoolFace
Apppublic

AK-21/Graphite-Industrial-Intelligence

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes
subscriptions.d-Dlr1nWGD.d.mts19 linesDownload Raw Back to dist
1//#region src/links/internals/subscriptions.d.ts2interface ConnectionStateBase<TError> {3  type: 'state';4  data?: never;5  error: TError | null;6}7interface ConnectionIdleState extends ConnectionStateBase<null> {8  state: 'idle';9}10interface ConnectionConnectingState<TError> extends ConnectionStateBase<TError | null> {11  state: 'connecting';12}13interface ConnectionPendingState extends ConnectionStateBase<null> {14  state: 'pending';15}16type TRPCConnectionState<TError> = ConnectionIdleState | ConnectionConnectingState<TError> | ConnectionPendingState;17//#endregion18export { TRPCConnectionState };19//# sourceMappingURL=subscriptions.d-Dlr1nWGD.d.mts.map