theatre/packages/browser-bundles/src/core-only.ts

13 lines
260 B
TypeScript
Raw Normal View History

2021-09-30 21:58:22 +02:00
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
},
}