UNPKG
@safs.io/match
Version:
latest (1.0.5)
next (1.0.0-next)
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.1-next
1.0.0
1.0.0-next
0.0.0
Gale/Shapely deferred acceptance algorithm
github.com/safs-io/match
safs-io/match
@safs.io/match
/
match
/
index.d.ts
12 lines
(11 loc)
•
276 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
{
LeftEl
}
from
"./left-element"
;
import
{
RightEl
}
from
"./right-element"
;
declare
type
Match
= {
left
:
LeftEl
;
right
:
RightEl
; };
export
declare
function
match
(
{ leftEls, rightEls, }: { leftEls: LeftEl[]; rightEls: RightEl[]; }
):
Match
[];
export
{};