UNPKG

approvals

Version:

Approval Tests Library - Capturing Human Intelligence

13 lines (12 loc) 211 B
export class StringWrapper { public contents: string; constructor() { this.contents = ""; } toString() { return this.contents; } append(text: string): void { this.contents += text; } }