UNPKG

299 BJavaScriptView Raw
1import { HTML5BackendImpl } from './HTML5BackendImpl';
2import * as NativeTypes from './NativeTypes';
3export { getEmptyImage } from './getEmptyImage';
4export { NativeTypes };
5export const HTML5Backend = function createBackend(manager, context) {
6 return new HTML5BackendImpl(manager, context);
7};