| 16 | type Falsy = false | 0 | "" | null | undefined |
| 17 | |
| 18 | interface Array<T> { |
| 19 | /** |
| 20 | * Returns the elements of an array that meet the condition specified in a callback function. |
| 21 | * @param predicate A function that accepts up to three arguments. The filter method calls the predicate function one time for each element in the array. |
| 22 | * @param thisArg An object to which the this keyword can refer in the predicate function. If thisArg is omitted, undefined is used as the this value. |
| 23 | */ |
| 24 | filter<S extends T>(predicate: BooleanConstructor, thisArg?: any): Exclude<S, Falsy>[] |
| 25 | } |
no outgoing calls
no test coverage detected