@foal/swagger
Version:
Swagger UI for FoalTS
20 lines (18 loc) • 450 B
JavaScript
window.onload = function() {
// Begin Swagger UI call region
const ui = SwaggerUIBundle(Object.assign({
{{ urls }},{{ primaryName }}
dom_id: '#swagger-ui',
deepLinking: true,
presets: [
SwaggerUIBundle.presets.apis,
SwaggerUIStandalonePreset
],
plugins: [
SwaggerUIBundle.plugins.DownloadUrl
],
layout: "StandaloneLayout"
},{{ uiOptions }}))
// End Swagger UI call region
window.ui = ui
}