Hi there,
I found your library by chance and I think it's a handy means of building an object via builder in the typescript world. Just wondering about the status of the project, is it being actively worked on or is the intention to put it into maintenance mode?
If the former applies it would be nice to be able to build via the following syntax
const person: Person = new Builder(Person)
.firstName('Magne')
.surname('Thor')
.birthday(new Date('2000-01-11'))
.build();
Many thanks in advance and nice work creating the library and open sourcing it.
Hi there,
I found your library by chance and I think it's a handy means of building an object via builder in the typescript world. Just wondering about the status of the project, is it being actively worked on or is the intention to put it into maintenance mode?
If the former applies it would be nice to be able to build via the following syntax
Many thanks in advance and nice work creating the library and open sourcing it.