chore: fix

This commit is contained in:
mathuo 2022-05-01 21:49:44 +01:00
parent 77db3adbe9
commit 926272067a
No known key found for this signature in database
GPG Key ID: C6EEDEFD6CA07281
2 changed files with 0 additions and 12 deletions

View File

@ -197,10 +197,6 @@ export class PaneviewApi implements CommonApi<SerializedPaneview> {
constructor(private readonly component: IPaneviewComponent) {}
addPanel(options: AddPaneviewComponentOptions): IPaneviewPanel {
return this.component.addPanel(options);
}
removePanel(panel: IPaneviewPanel): void {
this.component.removePanel(panel);
}

View File

@ -110,10 +110,6 @@ export class SplitviewComponent
return this._options;
}
get panels(): SplitviewPanel[] {
return this.splitview.getViews();
}
get length(): number {
return this._panels.size;
}
@ -160,10 +156,6 @@ export class SplitviewComponent
: this.splitview.orthogonalSize;
}
get length() {
return this._panels.size;
}
constructor(
private readonly element: HTMLElement,
options: SplitviewComponentOptions