TypeScript/tests/cases/compiler/checkTypePredicateForRedundantProperties.ts
2017-08-08 13:06:12 -07:00

4 lines
82 B
TypeScript

function addProp2(x: any): x is { a: string; a: string; } {
return true;
}