This commit is contained in:
Aria Minaei 2021-09-05 17:45:51 +02:00
parent f24e2b96d5
commit 400b55bf09
4 changed files with 3 additions and 32 deletions

View file

@ -30,7 +30,6 @@ export interface PaneClassDefinition<
DataType extends PropTypeConfig_Compound<{}>,
> {
class: string
dataType: DataType
component: React.ComponentType<{
paneId: string
}>
@ -237,7 +236,7 @@ export default class TheatreStudio implements IStudio {
return this._getSelectionDerivation().tapImmediate(studioTicker, fn)
}
get selection(): (ISheetObject | ISheet)[] {
get selection(): Array<ISheetObject | ISheet> {
return this._getSelection()
}