UNPKG
react-ngl
Version:
latest (0.2.3)
0.2.3
0.2.3-alpha.1
0.2.2
0.2.2-alpha.1
0.2.1
0.2.0
0.2.0-alpha.1
0.1.0
0.1.0-alpha.3
0.1.0-alpha.2
0.1.0-alpha.1
0.0.1-alpha.3
0.0.1-alpha.2
React wrapper for ngl
github.com/gky360/react-ngl
gky360/react-ngl
react-ngl
/
dist
/
@types
/
ngl
/
declarations
/
utils
/
registry.d.ts
14 lines
(13 loc)
•
290 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/** *
@file
Registry
*
@author
Alexander Rose <alexander.rose
@weirdbyte
.de> *
@private
*/
export
default
class
Registry
{
name
:
string
;
private
_dict;
constructor
(
name
:
string
);
add
(
key
:
string
,
value
:
any
):
void
;
get
(
key
:
string
):
any
;
get
names
():
string
[]; }