creates Themeable v2 type (#33268)

This commit is contained in:
Uchechukwu Obasi 2021-04-22 14:45:35 +01:00 committed by GitHub
parent 0e020a40a5
commit 9774a429b9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,5 +1,9 @@
import { GrafanaTheme } from '@grafana/data';
import { GrafanaTheme, GrafanaThemeV2 } from '@grafana/data';
export interface Themeable {
theme: GrafanaTheme;
}
export interface Themeable2 {
theme: GrafanaThemeV2;
}