mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 10:56:53 +00:00
Removed intersectionWith (#45349)
This commit is contained in:
parent
5a1cd665cd
commit
da25db9a7b
@ -89,7 +89,6 @@ es/innerJoin.d.ts
|
||||
es/insertAll.d.ts
|
||||
es/insert.d.ts
|
||||
es/intersection.d.ts
|
||||
es/intersectionWith.d.ts
|
||||
es/intersperse.d.ts
|
||||
es/into.d.ts
|
||||
es/invert.d.ts
|
||||
@ -343,7 +342,6 @@ src/innerJoin.d.ts
|
||||
src/insertAll.d.ts
|
||||
src/insert.d.ts
|
||||
src/intersection.d.ts
|
||||
src/intersectionWith.d.ts
|
||||
src/intersperse.d.ts
|
||||
src/into.d.ts
|
||||
src/invert.d.ts
|
||||
|
||||
2
types/ramda/es/intersectionWith.d.ts
vendored
2
types/ramda/es/intersectionWith.d.ts
vendored
@ -1,2 +0,0 @@
|
||||
import { intersectionWith } from '../index';
|
||||
export default intersectionWith;
|
||||
8
types/ramda/index.d.ts
vendored
8
types/ramda/index.d.ts
vendored
@ -816,14 +816,6 @@ export function insertAll(index: number): <T>(elts: readonly T[], list: readonly
|
||||
export function intersection<T>(list1: readonly T[], list2: readonly T[]): T[];
|
||||
export function intersection<T>(list1: readonly T[]): (list2: readonly T[]) => T[];
|
||||
|
||||
/**
|
||||
* Combines two lists into a set (i.e. no duplicates) composed of those
|
||||
* elements common to both lists. Duplication is determined according
|
||||
* to the value returned by applying the supplied predicate to two list
|
||||
* elements.
|
||||
*/
|
||||
export function intersectionWith<T>(pred: (a: T, b: T) => boolean, list1: readonly T[], list2: readonly T[]): T[];
|
||||
|
||||
/**
|
||||
* Creates a new list with the separator interposed between elements.
|
||||
*/
|
||||
|
||||
2
types/ramda/src/intersectionWith.d.ts
vendored
2
types/ramda/src/intersectionWith.d.ts
vendored
@ -1,2 +0,0 @@
|
||||
import { intersectionWith } from '../index';
|
||||
export default intersectionWith;
|
||||
Loading…
Reference in New Issue
Block a user