UNPKG

@barchart/common-node-js

Version:

Common classes, utilities, and functions for building Node.js servers

30 lines (26 loc) 400 B
module.exports = (() => { 'use strict'; /** * Base class for a fluent interface for building a {@link Action}. * * @public * @interface */ class ActionBuilder { constructor() { } /** * The target of the action. * * @public * @returns {Action} */ get action() { return null; } toString() { return '[ActionBuilder]'; } } return ActionBuilder; })();