UNPKG
parse-openapi
Version:
latest (0.0.1)
0.0.1
0.0.0
OpenAPI v3 parser
parse-openapi
/
dist
/
parser
/
getServices.d.ts
7 lines
(6 loc)
•
187 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
type
{
Service
}
from
'../types'
;
import
type
{
OpenApi
}
from
'../OpenApi'
;
/** * Get the OpenAPI services */
export
declare
const
getServices
:
(
openApi
:
OpenApi
) =>
Service
[];