UNPKG

react-obsidian

Version:

Dependency injection framework for React and React Native applications

17 lines 445 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Middleware = void 0; class Middleware { setNext(next) { this.next = next; } get resolveChain() { return { proceed: (Graph, props) => { return this.next.resolve(this.next.resolveChain, Graph, props); }, }; } } exports.Middleware = Middleware; //# sourceMappingURL=Middleware.js.map