TypeScript/tests/cases/fourslash/completionForQuotedPropertyInPropertyAssignment1.ts

18 lines
375 B
TypeScript

/// <reference path='fourslash.ts'/>
//// export interface Configfiles {
//// jspm: string;
//// 'jspm:browser': string;
//// }
//// let files: Configfiles;
//// files = {
//// /*0*/: '',
//// '/*1*/': ''
//// }
verify.completions(
{ marker: "0", exact: ["jspm", '"jspm:browser"'] },
{ marker: "1", exact: ["jspm", "jspm:browser"] },
);