getGroup(...): IDockviewGroupPanel

This commit is contained in:
mathuo 2025-05-06 20:44:43 +01:00
parent 1e63da807b
commit fe347c03d0
No known key found for this signature in database
GPG Key ID: C6EEDEFD6CA07281

View File

@ -840,7 +840,7 @@ export class DockviewApi implements CommonApi<SerializedDockview> {
/**
* Get a group object given a `string` id. May return undefined.
*/
getGroup(id: string): DockviewGroupPanel | undefined {
getGroup(id: string): IDockviewGroupPanel | undefined {
return this.component.getPanel(id);
}