interface AsukaLicenseServerError {
    code: string;
    details?: Record<string, unknown>;
    message: string;
    retryable?: boolean;
}

Properties

code: string
details?: Record<string, unknown>
message: string
retryable?: boolean