UNPKG

@codelytv/primitives-type

Version:
8 lines (6 loc) 131 B
export abstract class StringValueObject { constructor(readonly value: string) {} toString(): string { return this.value; } }