UNPKG
associativearray
Version:
latest (3.0.3)
3.0.3
3.0.2
3.0.1
3.0.0
2.1.0
2.0.0
1.2.2
1.2.1
1.2.0
1.1.0
1.0.0
Associative array
github.com/webdevelopland/associativearray
webdevelopland/associativearray
associativearray
/
js
/
associativearray.d.ts
9 lines
(8 loc)
•
249 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
Pattern
}
from
'./pattern'
;
export
declare
class
AssociativeArray
extends
Pattern
{
stringify
(
tab
?:
string
):
string
;
object
():
any
;
fromObject
(
object
:
any
):
void
;
exportArray
():
any
[];
importArray
(
array
:
any
[]):
void
; }