UNPKG
apim-developer-portal2
Version:
latest (2.0.4)
2.0.4
API management developer portal
apim-developer-portal2
/
src
/
contracts
/
tagResource.ts
14 lines
(11 loc)
•
298 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import
{
ApiContract
}
from
"./api"
;
import
{
OperationContract
}
from
"./operation"
;
import
{
TagContract
}
from
"./tag"
;
/** * Contract of TagResource */
export
interface
ApiTagResourceContract
{
api
?:
ApiContract
;
operation
?:
OperationContract
;
tag
?:
TagContract
; }