theatre/packages/browser-bundles/src/core-only.ts
2021-09-30 21:58:22 +02:00

12 lines
260 B
TypeScript

import * as core from '@theatre/core'
// @ts-ignore
window.Theatre = {
core,
get studio() {
alert(
"Theatre.studio is only available in the core-and-studio.js bundle. You're using the core-only.min.js bundle.",
)
return undefined
},
}