UNPKG
mosx
Version:
latest (0.8.11)
0.8.11
0.8.10
0.8.9
0.8.8
0.8.7
0.8.6
0.8.5
0.8.4
0.8.3
0.8.2
0.8.1
0.8.0
0.7.8
0.7.6
0.7.2
0.7.1
Multiview observable state management engine
mosx
/
dist
/
src
/
context.d.ts
13 lines
(12 loc)
•
269 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
export
interface
ISchemaMeta
{
index
:
number
;
parent
:
string
;
ref
:
any
; }
export
declare
class
MosxContext
{
types
:
Set
<
any
>;
meta
:
Map
<
string
,
ISchemaMeta
>;
index
:
string
[];
add
(
contructor
:
any
):
void
;
has
(
constructor
:
any
):
boolean
; }