UNPKG

@cowwoc/requirements

Version:

A fluent API for enforcing design contracts with automatic message generation.

24 lines 574 B
/* * Copyright (c) 2016 Gili Tzabari * Licensed under the Apache License, Version 2.0: http://www.apache.org/licenses/LICENSE-2.0 */ import { Terminal } from "../internal.mjs"; /** * The default implementation of ProcessScope. */ class DefaultProcessScope { /** * The singleton instance. */ static INSTANCE = new DefaultProcessScope(); terminal = new Terminal(); constructor() { } getTerminal() { return this.terminal; } close() { } } export { DefaultProcessScope }; //# sourceMappingURL=DefaultProcessScope.mjs.map