UNPKG
onix-core
Version:
latest (4.2.4)
4.2.4
4.2.3
4.2.2
4.2.1
4.2.0
4.1.0
4.0.1
4.0.0
3.1.4
3.1.2
3.1.1
3.1.0
3.0.1
3.0.0
2.0.2
2.0.1
2.0.0
1.8.0
1.7.2
1.7.0
1.6.43
1.6.42
1.6.41
1.6.40
1.6.39
1.6.38
1.5.37
1.5.36
1.3.35
1.3.34
1.2.33
1.2.32
1.2.31
1.2.30
1.2.29
1.2.28
1.1.27
1.1.26
1.1.25
1.1.24
1.1.23
1.1.22
1.1.21
1.1.20
1.1.19
1.1.18
1.1.17
1.1.16
1.0.15
1.0.14
1.0.12
1.0.11
1.0.10
1.0.9
1.0.8
0.7.7
0.7.6
0.7.5
0.6.4
0.6.3
0.6.2
0.6.1
0.5.7
0.5.6
0.5.5
0.5.4
0.5.3
0.5.1
0.5.0
Onix library core
github.com/DrNixx/onix-core
DrNixx/onix-core
onix-core
/
src
/
Types.ts
15 lines
(13 loc)
•
233 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
export
interface
IDisposable
{
/** * Ликвидировать объект. */
dispose
():
void
; }
export
interface
ITyped
{
_type
:
string
; }
export
interface
IError
{
type
:
string
,
message
?:
string
}