redoc/lib/index.js
2015-10-03 12:38:41 +03:00

14 lines
326 B
JavaScript

import 'zone.js';
import 'reflect-metadata';
import { bootstrap } from 'angular2/angular2';
import { RedocTest } from './RedocTest/redoc-test';
export * from './RedocTest/redoc-test';
export function init() {
bootstrap(RedocTest).then(
() => console.log('ReDoc bootstrapped!'),
error => console.log(error)
);
}