UNPKG

@cowwoc/requirements

Version:

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

16 lines (15 loc) 302 B
import type { Terminal } from "../internal.mjs"; /** * The process configuration. */ interface ProcessScope { /** * @returns the terminal attached to the process */ getTerminal(): Terminal; /** * Closes the scope. */ close(): void; } export type { ProcessScope };