UNPKG
arcticpackage
Version:
latest (0.0.5)
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
A library for making Arctic packages in typescript.
arcticpackage
/
dist
/
values
/
Namespace.d.ts
8 lines
(7 loc)
•
227 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
export
default
class
Namespace
{
readonly
name
:
string
;
properties
:
Map
<
string
,
any
>;
constructor
(
name
:
string
,
properties
?:
Map
<
string
,
any
>
);
get
(
name
:
string
):
any
;
set
(
name
:
string
,
value
:
any
):
void
; }