UNPKG
@anchor-solutions-nl/translator-as
Version:
latest (0.2.12)
0.2.12
0.2.11
0.2.10
0.2.5
0.2.3
0.2.1
0.2.0
0.1.11
0.1.2
0.1.1
0.1.0
0.0.3
0.0.2
0.0.1
Translator client module
gitlab.com/hansanker/translatorx-client
@anchor-solutions-nl/translator-as
/
store.d.ts
12 lines
(11 loc)
•
285 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import { IObjectMap }
from
'./models'
;
/** * This internal store class */
export
declare
class
InternalStore
{ store: IObjectMap<any>;
getItem
(
prop
:
string
): any;
setItem
(
prop
:
string
,
data
: any):
void
;
clear
():
void
;
removeItem
(
prop
:
string
):
void
; }