summaryrefslogtreecommitdiff
path: root/cli/tests
diff options
context:
space:
mode:
authorKitson Kelly <me@kitsonkelly.com>2020-02-28 03:27:00 +1100
committerGitHub <noreply@github.com>2020-02-27 11:27:00 -0500
commit1d26da6a478d96a03b08b5bf1ff93a277b69f550 (patch)
treef780097553003735d3ba622db78b1858c1be9b59 /cli/tests
parentdaf7617f42e2e7520344ec98db3d60016b85fd73 (diff)
feat: Support types compiler option in compiler APIs (#4155)
Handles `types` in the compiler APIs to make it easier to supply external type libraries.
Diffstat (limited to 'cli/tests')
-rw-r--r--cli/tests/subdir/foo_types.d.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/cli/tests/subdir/foo_types.d.ts b/cli/tests/subdir/foo_types.d.ts
new file mode 100644
index 000000000..c489584b9
--- /dev/null
+++ b/cli/tests/subdir/foo_types.d.ts
@@ -0,0 +1,3 @@
+declare namespace Foo {
+ const bar: string;
+}