mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-11 03:16:48 +03:00
24 lines
519 B
JavaScript
24 lines
519 B
JavaScript
'use strict';
|
|
|
|
import {bootstrap} from 'angular2/platform/browser';
|
|
import {Redoc} from './components/index';
|
|
import SchemaManager from './utils/SchemaManager';
|
|
import {redocEvents} from './events';
|
|
export * from './components/index';
|
|
|
|
|
|
|
|
export function init(schemaUrl) {
|
|
SchemaManager.instance().load(schemaUrl)
|
|
.then(() => bootstrap(Redoc))
|
|
.then(
|
|
() => {
|
|
redocEvents.bootstrapped.next();
|
|
console.log('ReDoc bootstrapped!');
|
|
},
|
|
error => console.log(error)
|
|
);
|
|
}
|
|
|
|
window.Redoc = Redoc;
|