Merge pull request #925 from mathuo/923-setvisible-is-not-working

getGroup(...): IDockviewGroupPanel
This commit is contained in:
mathuo 2025-05-20 20:01:48 +01:00 committed by GitHub
commit b50c9506c6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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);
}