UNPKG

@cowwoc/requirements

Version:

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

16 lines (15 loc) 373 B
/** * Wraps a String to prevent it from being quoted when used as a context value. */ declare class UnquotedStringValue { private readonly value; /** * Creates a new instance. * * @param value - the string * @throws TypeError if `value` is null */ constructor(value: string); toString(): string; } export { UnquotedStringValue };