import { Resource, ResourceError, UnexpectedResourceError } from "@ldo/connected"; //#region src/notifications/results/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.mts.map