mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-11 03:16:48 +03:00
14 lines
326 B
JavaScript
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)
|
|
);
|
|
}
|