UNPKG

entangle.ts

Version:

A declarative, event-driven framework for orchestrating business logic in TypeScript & Node.js applications.

11 lines (10 loc) 330 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ErrorHandler = void 0; /** * Abstract class that defines the contract for handling errors within the framework. * Developers must provide a concrete implementation of this class. */ class ErrorHandler { } exports.ErrorHandler = ErrorHandler;