UNPKG
@acaprojects/a2-composer
Version:
latest (0.6.21)
0.6.21
0.6.20
0.6.19
0.6.18
0.6.16
0.6.15
0.6.14
0.6.12
0.6.11
0.6.9
Angular 2 Interface for composer
github.com/acaprojects/a2-composer
acaprojects/a2-composer
@acaprojects/a2-composer
/
_build
/
services
/
systems
/
classes
/
system.class.d.ts
12 lines
(11 loc)
•
280 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
{
Module
}
from
'./module.class'
;
export
declare
class
System
{
id
:
string
;
service
:
any
;
parent
:
any
;
modules
:
Module
[];
exists
:
boolean
;
constructor
(
srv
:
object
,
sys_id
:
string
);
get
(
mod_id
:
string
,
index
?:
number
):
any
;
rebind
():
void
; }