avantation
Version:
Build OpenAPI3.0 specification from HAR
24 lines (23 loc) • 534 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
let swagger2 = {
swagger: '2.0',
info: {},
host: '',
basePath: '',
schemes: ['http', 'https'],
produces: ['application/json'],
consumes: ['application/json'],
securityDefinitions: {
JWT: {
name: 'Authorization',
type: 'apiKey',
in: 'header',
'x-type': 'http',
'x-scheme': 'bearer'
}
},
tags: [],
paths: {}
};
exports.default = swagger2;