/* Copyright IBM Corp. 2017 */ describe('type.interface.test', () => { it('should handle the interface', () => { interface Test { elements: { ['abc']: string; ['def d']: string; ['def']?: string; }; } const t: Test = { elements: { 'abc': 'abc', 'def d': 'def' } }; }); });