This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Doric/doric-web/index.ts

10 lines
475 B
TypeScript
Raw Normal View History

2019-12-19 10:42:57 +08:00
import { DoricElement } from './src/DoricElement'
2019-12-26 17:18:26 +08:00
import { NavigationElement } from './src/navigate/NavigationElement'
2019-12-26 17:09:03 +08:00
window.customElements.define('doric-div', DoricElement);
2020-01-03 16:35:04 +08:00
window.customElements.define('doric-navigation', NavigationElement);
export * from './src/DoricElement'
export * from './src/navigate/NavigationElement'
export * from './src/DoricPlugin'
export * from './src/DoricRegistry'
export * from './src/DoricDriver'
export * from './src/shader/DoricViewNode'