You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
text: "ReadonlyArray.filter<S extends T>(predicate: (value: T, index: number, array: readonly T[]) => value is S, thisArg?: any): S[]",
12
+
overloadsCount: 2,
13
+
docComment: "Returns the elements of an array that meet the condition specified in a callback function.",
14
+
parameterDocComment: "A function that accepts up to three arguments. The filter method calls the predicate function one time for each element in the array.",
15
+
tags: [
16
+
{name: "param",text: "predicate A function that accepts up to three arguments. The filter method calls the predicate function one time for each element in the array."},
17
+
{name: "param",text: "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."}
0 commit comments