Builder class
A builder pattern implementation with fluent interface.
Example
const obj = new Builder<MyObject>()
.with("name", "John")
.with("age", 30)
.build();Constructors
constructor constructor
Signature
Type Parameters
- T
The type being built