mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
* feat(debugpanel): schematizing debug panel plugin * delete old types and update imports to new generated schema * update to experimental * derived counters, fix options key name * num to int * chore(debugpanel): update ts imports post type rename * chore(kindsys): refresh report.json * migrate UpdateCounters back to runtime * merge with main --------- Co-authored-by: Will Browne <will.browne@grafana.com> Co-authored-by: sam boyer <sdboyer@grafana.com>
31 lines
611 B
TypeScript
31 lines
611 B
TypeScript
// Code generated - EDITING IS FUTILE. DO NOT EDIT.
|
|
//
|
|
// Generated by:
|
|
// public/app/plugins/gen.go
|
|
// Using jennies:
|
|
// TSTypesJenny
|
|
// PluginTSTypesJenny
|
|
//
|
|
// Run 'make gen-cue' from repository root to regenerate.
|
|
|
|
export const PanelCfgModelVersion = Object.freeze([0, 0]);
|
|
|
|
export type UpdateConfig = {
|
|
render: boolean,
|
|
dataChanged: boolean,
|
|
schemaChanged: boolean,
|
|
};
|
|
|
|
export enum DebugMode {
|
|
Cursor = 'cursor',
|
|
Events = 'events',
|
|
Render = 'render',
|
|
State = 'State',
|
|
ThrowError = 'ThrowError',
|
|
}
|
|
|
|
export interface PanelOptions {
|
|
counters?: UpdateConfig;
|
|
mode: DebugMode;
|
|
}
|