UNPKG

auto-builder-sdk

Version:

SDK for building Auto Builder workflow plugins

16 lines (15 loc) 501 B
// Simplified mirror of auto-builder/src/types/index.ts for external SDK consumers. // Keep in sync with the upstream file – remove implementation bodies to avoid // emitting runtime code. Only type declarations are exported. // Simplified error classes (no bodies to avoid runtime code) export class NodeApiError extends Error { httpStatusCode; errorMessage; description; context; functionality; } export class NodeOperationError extends Error { description; context; }