mirror of
https://github.com/mathuo/dockview
synced 2025-05-06 03:28:25 +00:00
chore: fix
This commit is contained in:
parent
77db3adbe9
commit
926272067a
@ -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);
|
||||
}
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user