redoc/lib/index.js
2015-11-16 01:10:04 +02:00

19 lines
418 B
JavaScript

'use strict';
import {bootstrap} from 'angular2/angular2';
import {Redoc} from './components/index';
import SchemaManager from './utils/SchemaManager';
export * from './components/index';
export function init(schemaUrl) {
SchemaManager.instance().load(schemaUrl)
.then(() => bootstrap(Redoc))
.then(
() => console.log('ReDoc bootstrapped!'),
error => console.log(error)
);
}
window.Redoc = Redoc;