UNPKG
ngrx-uml
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
0.1.4
0.1.2
0.1.0
0.0.3
0.0.2
0.0.1
NGRX to Plant UML diagram
github.com/immament/ngrx-uml
immament/ngrx-uml
ngrx-uml
/
dist
/
lib
/
core
/
converters
/
models
/
converted-items
/
converted-item.model.d.ts
7 lines
(6 loc)
•
177 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
{
TypeKind
}
from
'../type-kind.enum'
;
export
interface
ConvertedItem
{
readonly
kind
:
TypeKind
;
readonly
kindText
:
string
;
getChildren
():
ConvertedItem
[]; }