@grafana/ui
Version:
Grafana Components Library
9 lines (8 loc) • 461 B
TypeScript
import { VizOrientation, PanelModel } from '../../types/panel';
import { FieldDisplayOptions } from '../../utils/fieldDisplay';
export interface SingleStatBaseOptions {
fieldOptions: FieldDisplayOptions;
orientation: VizOrientation;
}
export declare const sharedSingleStatOptionsCheck: (options: any, prevPluginId: string, prevOptions: any) => any;
export declare const sharedSingleStatMigrationCheck: (panel: PanelModel<SingleStatBaseOptions>) => any;