From fc2dca23448c66f6f31aafc46b2e2b7136c2bee5 Mon Sep 17 00:00:00 2001 From: Julian Williams Date: Thu, 22 Oct 2015 18:18:57 -0400 Subject: [PATCH] Added test. --- tests/cases/compiler/typeAliasDeclareKeyword01.d.ts | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 tests/cases/compiler/typeAliasDeclareKeyword01.d.ts diff --git a/tests/cases/compiler/typeAliasDeclareKeyword01.d.ts b/tests/cases/compiler/typeAliasDeclareKeyword01.d.ts new file mode 100644 index 00000000000..cf2a5061937 --- /dev/null +++ b/tests/cases/compiler/typeAliasDeclareKeyword01.d.ts @@ -0,0 +1,2 @@ +type Foo = number; +declare type Bar = string; \ No newline at end of file