Chore: Using named type imports now

This commit is contained in:
Aria Minaei 2021-06-27 13:43:39 +02:00
parent 6e19c51998
commit 385cfad9aa
6 changed files with 6 additions and 6 deletions

View file

@ -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'

View file

@ -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'