export const ErrorCode: Readonly<{ INVALID_ARGUMENT: "INVALID_ARGUMENT"; INVALID_PREFIX: "INVALID_PREFIX"; INVALID_PEPPER: "INVALID_PEPPER"; STORE_ERROR: "STORE_ERROR"; }>; /** * Every recoverable failure raised by this package. Carries a stable * `code` (from {@link ErrorCode}) and a `status` — the HTTP response * status a middleware layer would use when translating the error. */ export class ApiKeyError extends BaseError { static statuses: { INVALID_ARGUMENT: number; INVALID_PREFIX: number; INVALID_PEPPER: number; STORE_ERROR: number; }; } import { BaseError } from '@exortek/shared/errors';