TypeScript/tests/cases/fourslash/completionListWithAmbientDeclaration.ts

15 lines
278 B
TypeScript
Raw Normal View History

2015-03-02 23:41:44 +01:00
/// <reference path="fourslash.ts"/>
//// declare module "http" {
//// var x;
//// /*1*/
//// }
//// declare module 'https' {
//// }
//// /*2*/
2018-05-01 22:00:13 +02:00
verify.completions(
{ marker: "1", excludes: "http" },
{ marker: "2", excludes: ["http", "https"] },
2018-05-01 22:00:13 +02:00
);