This commit is contained in:
BluJ
2023-03-27 17:07:17 -06:00
parent ce0170b808
commit 72c9e5fd26
10 changed files with 73 additions and 62 deletions

View File

@@ -1,5 +1,7 @@
import { typeFromProps } from "../../util";
export class IBuilder<A> {
protected constructor(readonly a: A) {}
protected constructor(readonly a: A) { }
public build(): A {
return this.a;