diff --git a/theatre/core/src/projects/Project.ts b/theatre/core/src/projects/Project.ts index a2b74ed..472c727 100644 --- a/theatre/core/src/projects/Project.ts +++ b/theatre/core/src/projects/Project.ts @@ -2,7 +2,7 @@ import type {OnDiskState} from '@theatre/core/projects/store/storeTypes' import type TheatreProject from '@theatre/core/projects/TheatreProject' import type Sheet from '@theatre/core/sheets/Sheet' import SheetTemplate from '@theatre/core/sheets/SheetTemplate' -import type Studio from '@theatre/studio/Studio' +import type {Studio} from '@theatre/studio/Studio' import type {ProjectAddress} from '@theatre/shared/utils/addresses' import type {Pointer} from '@theatre/dataverse' import {PointerProxy} from '@theatre/dataverse' diff --git a/theatre/core/src/projects/initialiseProjectState.ts b/theatre/core/src/projects/initialiseProjectState.ts index a2d7768..9717ccd 100644 --- a/theatre/core/src/projects/initialiseProjectState.ts +++ b/theatre/core/src/projects/initialiseProjectState.ts @@ -1,4 +1,4 @@ -import type Studio from '@theatre/studio/Studio' +import type {Studio} from '@theatre/studio/Studio' import delay from '@theatre/shared/utils/delay' import {original} from 'immer' import type Project from './Project' diff --git a/theatre/studio/src/UI.ts b/theatre/studio/src/UI.ts index a6e9677..641af71 100644 --- a/theatre/studio/src/UI.ts +++ b/theatre/studio/src/UI.ts @@ -2,7 +2,7 @@ import UIRootWrapper from '@theatre/studio/UIRoot/UIRootWrapper' import type {$IntentionalAny} from '@theatre/shared/utils/types' import React from 'react' import ReactDOM from 'react-dom' -import type Studio from './Studio' +import type {Studio} from './Studio' export default class UI { readonly containerEl = document.createElement('div') diff --git a/theatre/studio/src/UIRoot/UIRoot.tsx b/theatre/studio/src/UIRoot/UIRoot.tsx index 2e09642..145ca10 100644 --- a/theatre/studio/src/UIRoot/UIRoot.tsx +++ b/theatre/studio/src/UIRoot/UIRoot.tsx @@ -1,5 +1,5 @@ import getStudio from '@theatre/studio/getStudio' -import type Studio from '@theatre/studio/Studio' +import type {Studio} from '@theatre/studio/Studio' import {usePrism} from '@theatre/shared/utils/reactDataverse' import {val} from '@theatre/dataverse' import React from 'react' diff --git a/theatre/studio/src/UIRoot/UIRootWrapper.tsx b/theatre/studio/src/UIRoot/UIRootWrapper.tsx index 3f6d594..ef72cde 100644 --- a/theatre/studio/src/UIRoot/UIRootWrapper.tsx +++ b/theatre/studio/src/UIRoot/UIRootWrapper.tsx @@ -1,4 +1,4 @@ -import type Studio from '@theatre/studio/Studio' +import type {Studio} from '@theatre/studio/Studio' import React from 'react' import UIRoot from './UIRoot' diff --git a/theatre/studio/src/getStudio.ts b/theatre/studio/src/getStudio.ts index c0b55e3..67f2c22 100644 --- a/theatre/studio/src/getStudio.ts +++ b/theatre/studio/src/getStudio.ts @@ -1,4 +1,4 @@ -import type Studio from './Studio' +import type {Studio} from './Studio' let studio: Studio