From 8a99860af378ea2796238f7c4503ad3335d1eec4 Mon Sep 17 00:00:00 2001 From: Donovan Hutchence Date: Tue, 23 Aug 2022 12:38:09 +0100 Subject: [PATCH] Export AppOptions (#4581) --- src/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/index.js b/src/index.js index b48d0ad9225..2b9227119ef 100644 --- a/src/index.js +++ b/src/index.js @@ -216,6 +216,7 @@ export { getTouchTargetCoords, Touch, TouchEvent } from './input/touch-event.js' export * from './framework/constants.js'; export { script } from './framework/script.js'; export { AppBase, app } from './framework/app-base.js'; +export { AppOptions } from './framework/app-options.js'; export { Application } from './framework/application.js'; export { AnimationComponent } from './framework/components/animation/component.js'; export { AnimationComponentSystem } from './framework/components/animation/system.js';