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

This commit is contained in:
mathuo 2022-05-21 19:08:13 +01:00
parent c0f5b1d86b
commit 03642d50a2
No known key found for this signature in database
GPG Key ID: C6EEDEFD6CA07281

View File

@ -20,7 +20,6 @@ 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;
}