@felixgeelhaar/govee-api-client
Version:
Enterprise-grade TypeScript client library for the Govee Developer REST API
16 lines • 454 B
TypeScript
export declare abstract class GoveeApiClientError extends Error {
abstract readonly code: string;
readonly timestamp: Date;
readonly cause?: Error;
constructor(message: string, cause?: Error);
toObject(): {
name: string;
code: string;
message: string;
timestamp: string;
stack?: string;
cause?: unknown;
};
toString(): string;
}
//# sourceMappingURL=GoveeApiClientError.d.ts.map