Revert "feat: remove panel.api.focus() from public api"

This reverts commit 03642d50a2.
This commit is contained in:
mathuo 2022-05-22 19:52:16 +01:00
parent 79df8020b8
commit 598175ea60
No known key found for this signature in database
GPG Key ID: C6EEDEFD6CA07281

View File

@ -20,6 +20,7 @@ export interface BasePanelViewExported<T extends PanelApiImpl> {
readonly width: number;
readonly height: number;
readonly params: Record<string, any> | undefined;
focus(): void;
toJSON(): object;
update(event: PanelUpdateEvent): void;
}