We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5fa6fd4 commit b06daf4Copy full SHA for b06daf4
api.md
@@ -1520,6 +1520,13 @@ interface MyObject {
1520
}```
1521
1522
1523
+## [type-globalThis](./test/programs/type-globalThis)
1524
+
1525
+```ts
1526
+export type Test = typeof globalThis;
1527
+```
1528
1529
1530
## [type-intersection](./test/programs/type-intersection)
1531
1532
```ts
@@ -1644,6 +1651,20 @@ class MyObject {
1644
1651
```
1645
1652
1646
1653
1654
+## [type-recursive](./test/programs/type-recursive)
1655
1656
1657
+/**
1658
+ * A recursive type
1659
+ */
1660
+export type TestChildren = TestChild | Array<TestChild | TestChildren>;
1661
1662
+interface TestChild {
1663
+ type: string;
1664
+}
1665
1666
1667
1647
1668
## [type-union](./test/programs/type-union)
1648
1669
1649
1670
0 commit comments