TypeScript/tests/cases/compiler/constDeclarations-ambient.ts
2014-10-12 21:10:04 -07:00

11 lines
188 B
TypeScript

// @target: ES6
// No error
declare const c1: boolean;
declare const c2: number;
declare const c3, c4 :string, c5: any;
declare module M {
const c6;
const c7: number;
}