UNPKG
functional-type-script
Version:
latest (0.0.4)
0.0.4
A Functional Library for TypeScript based on Scala
sapienapps.com
jordanburke/FunctionalTypeScript
functional-type-script
/
lib
/
main
/
Map.d.ts
7 lines
(6 loc)
•
196 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
{
Iterable
}
from
"./Iterable"
;
export
declare
class
IMap
<K, V>
implements
Iterable
<[K, V]> {
private
data;
constructor
(
);
count
(
p
:
(
tuple
: [K, V]
) =>
boolean
):
number
; }