TypeScript/tests/baselines/reference/deeplyNestedCheck.js
2017-03-23 11:24:01 -07:00

15 lines
279 B
TypeScript

//// [deeplyNestedCheck.ts]
// Repro from #14794
interface DataSnapshot<X = {}> {
child(path: string): DataSnapshot;
}
interface Snapshot<T> extends DataSnapshot {
child<U extends keyof T>(path: U): Snapshot<T[U]>;
}
//// [deeplyNestedCheck.js]
// Repro from #14794