TypeScript/tests/cases/conformance/expressions/typeGuards/typePredicateASI.ts

4 lines
84 B
TypeScript

interface I {
foo(callback: (a: any, b: any) => void): I
is(): boolean;
}