import { ResourceError, UnexpectedResourceError } from "./ErrorResult.cjs"; import { Resource } from "../../Resource.cjs"; //#region src/results/error/NotificationErrors.d.ts type NotificationCallbackError = DisconnectedAttemptingReconnectError | DisconnectedNotAttemptingReconnectError | UnsupportedNotificationError | UnexpectedResourceError; /** * Indicates that the requested method for receiving notifications is not * supported by this Pod. */ declare class UnsupportedNotificationError extends ResourceError { readonly type: "unsupportedNotificationError"; } /** * Indicates that the socket has disconnected and is attempting to reconnect. */ declare class DisconnectedAttemptingReconnectError extends ResourceError { readonly type: "disconnectedAttemptingReconnectError"; } /** * Indicates that the socket has disconnected and is attempting to reconnect. */ declare class DisconnectedNotAttemptingReconnectError extends ResourceError { readonly type: "disconnectedNotAttemptingReconnectError"; } //#endregion export { DisconnectedAttemptingReconnectError, DisconnectedNotAttemptingReconnectError, NotificationCallbackError, UnsupportedNotificationError }; //# sourceMappingURL=NotificationErrors.d.cts.map