TypeScript/tests/cases/fourslash/quickInfoForObjectBindingElementPropertyName04.ts

17 lines
294 B
TypeScript
Raw Normal View History

2015-07-16 00:07:04 +02:00
/// <reference path='fourslash.ts'/>
////interface Recursive {
//// next?: Recursive;
//// value: any;
////}
////
////function f ({ /*1*/next: { /*2*/next: x} }) {
////}
2016-09-09 18:02:55 +02:00
verify.quickInfos({
1: `(property) next: {
2015-07-16 01:05:49 +02:00
next: any;
2016-09-09 18:02:55 +02:00
}`,
2: "(property) next: any"
});