mirror of
https://github.com/grafana/grafana.git
synced 2025-08-02 14:12:16 +08:00

* kindsys: Adapt to new PanelCfg schema interface * building locally * Remove Panel prefix in cue files * Regenerate * Update imports * fixup! Merge branch 'remove-panel-prefix' into sdboyer/redundant-panelcfg-prefixes * Fix formatting --------- Co-authored-by: Ryan McKinley <ryantxu@gmail.com> Co-authored-by: Tania B <yalyna.ts@gmail.com>
31 lines
606 B
TypeScript
31 lines
606 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 Options {
|
|
counters?: UpdateConfig;
|
|
mode: DebugMode;
|
|
}
|