We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd579c7 commit 671094dCopy full SHA for 671094d
src/test/value.spec.ts
@@ -0,0 +1,11 @@
1
+import { Value } from "../lib";
2
+
3
+export class TestValue<Type> extends Value<Type> {
4
+ public override get [Symbol.toStringTag]() {
5
+ return 'TestValue';
6
+ }
7
+}
8
9
+const value = new TestValue('test');
10
11
+console.log(`tag, `, value.tag);
0 commit comments