UNPKG
@nepwork/dashboards
Version:
latest (0.0.2)
0.0.2
Dashboards for emergencies and monitoring
github.com/nepwork/admin-ui
nepwork/admin-ui
@nepwork/dashboards
/
hgraph
/
src
/
lib
/
model
/
core.model.ts
16 lines
(12 loc)
•
239 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
export
type
UntypedTuple
= {}[];
export
interface
IdentifiableObject
{
id
:
string
;
label
:
string
; }
export
type
Quat
=
number
|
BigInteger
;
export
interface
Quaternion
{
time
:
Date
;
first
:
Quat
;
second
:
Quat
;
third
:
Quat
; }