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.
2 parents f1dbe3d + b8276bf commit a9a6690Copy full SHA for a9a6690
README.md
@@ -60,7 +60,7 @@ compile(file, path).then(ts =>
60
| ✅ | Functions | `(A, B) => C` | `(a: A, b: B) => C` |
61
| ⚔ | Predicates (0) | `(a: A, b: B) => %checks` | `(a: A, b: B) => C` |
62
| ⚔ | Predicates (1) | `(a: A, b: B) => C %checks` | `(a: A, b: B) => C` |
63
-| ✅ | Exact types | `{| a: A |}` | `{ a: A }` (not expressible) |
+| ✅ | Exact types | `{\| a: A \|}` | `{ a: A }` (not expressible) |
64
| ✅ | Indexers | `{ [A]: B }` | `{ [a: A]: B }` |
65
| ✅ | Opaque types | `opaque type A = B` | `type A = B` (not expressible) |
66
| ✅ | Variance | `interface A { +b: B, -c: C }` | `interface A { readonly b: B, c: C }` |
0 commit comments