UNPKG
@colormate/core
Version:
beta (0.5.0-beta)
latest (0.5.1-beta-1)
0.5.1-beta-1
0.5.1-beta
0.5.0-beta
A modular and efficient color management library for JavaScript and TypeScript applications.
@colormate/core
/
dist
/
helpers
/
MemoizationCache.d.ts
7 lines
(6 loc)
•
158 B
TypeScript
View Raw
1
2
3
4
5
6
7
export
declare
class
MemoizationCache
<
T
>
{
private
cache;
get
(
key
:
string
): T | undefined;
set
(
key
:
string
,
value
: T):
void
;
clear
():
void
; }