redoc/lib/index.js

20 lines
459 B
JavaScript
Raw Normal View History

2015-10-03 15:11:57 +03:00
'use strict';
2015-10-03 11:54:09 +03:00
import 'reflect-metadata';
import { bootstrap } from 'angular2/angular2';
import { Redoc } from './components/Redoc/redoc';
import { SchemaManager} from './utils/SchemaManager';
2015-10-03 11:54:09 +03:00
export * from './components/index';
2015-10-03 11:54:09 +03:00
export function init(schemaUrl) {
SchemaManager.instance().load(schemaUrl).then(
() => {
return bootstrap(Redoc);
}
).then(
2015-10-03 11:54:09 +03:00
() => console.log('ReDoc bootstrapped!'),
error => console.log(error)
);
}