TypeScript/tests/cases/fourslash/defaultParamsAndContextualTypes.ts

19 lines
468 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
/// <reference path="fourslash.ts"/>
////interface FooOptions {
//// text?: string;
////}
////interface Foo {
//// bar(xy: string, options?: FooOptions): void;
////}
////var o: Foo = {
//// bar: function (x/*1*/y, opt/*2*/ions = {}) {
//// // expect xy to have type string, and options to have type FooOptions in here
//// }
////}
2016-09-09 18:02:55 +02:00
verify.quickInfos({
1: "(parameter) xy: string",
2: "(parameter) options: FooOptions"
});