redoc/lib/index.js

11 lines
193 B
JavaScript
Raw Normal View History

2015-10-03 15:11:57 +03:00
'use strict';
2015-11-16 02:10:04 +03:00
import {Redoc} from './components/index';
2016-01-15 12:35:45 +03:00
import {enableProdMode} from 'angular2/core';
2015-10-03 11:54:09 +03:00
2015-12-30 11:16:36 +03:00
export var init = Redoc.init;
2015-10-15 20:06:33 +03:00
window.Redoc = Redoc;
2016-01-15 12:35:45 +03:00
enableProdMode();
2016-01-20 18:05:43 +03:00
Redoc.autoInit();