UNPKG
yadop
Version:
latest (1.3.1)
1.3.1
1.2.1
1.2.0
1.1.0
1.0.0
Yet another Doc Parser
github.com/devolksbank/yadop
devolksbank/yadop
yadop
/
built
/
lib
/
ngdoc
/
model
/
entity.d.ts
10 lines
(9 loc)
•
261 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
Method
}
from
'./method'
;
import
{
AttributeType
}
from
'./attributeType'
;
import
{
Yadop
}
from
"./yadop"
;
export
interface
Entity
extends
Yadop
{
type
?:
string
;
attributes
?:
AttributeType
[];
methods
?:
Method
[];
requires
?:
string
[]; }