This simplifies the typings of specifying server options. We have a set of default server options which are applied if they are not supplied by the caller. Using a Partial<> Type for the constructor options lets the User only override the options they need to.
This simplifies the typings of specifying server options. We have a set of default server options which are applied if they are not supplied by the caller. Using a
Partial<>
Type for the constructor options lets the User only override the options they need to.