smartswagger/ts/smartswagger.plugins.ts

27 lines
455 B
TypeScript
Raw Normal View History

2021-11-19 19:05:52 +00:00
// node native
import * as path from 'path';
export {
path
}
// @pushrocks scope
import * as smartexpress from '@pushrocks/smartexpress';
import * as smartpromise from '@pushrocks/smartpromise';
export {
smartexpress,
smartpromise
}
// third party
import * as openapiTypes from 'openapi-types';
import swaggerParser from '@apidevtools/swagger-parser';
import nodeFetch from 'node-fetch';
export {
openapiTypes,
swaggerParser,
nodeFetch
}