mirror of
https://github.com/grafana/grafana.git
synced 2025-07-31 21:42:38 +08:00

* Remove jenny_ts_resources and use jenny_ts_types for all cases
* Unify TS generated files into one jenny
* Add missing imports to versioned files
* Update Parca plugin
* Fix loki
* Use LokiQuery
* Fix pyroscope tests
* Fix prettier
* 😒 fix default pyroscope value name
* Set the LokiQuery
* Update Elasticsearch and TestData
* Missed files from testdata
* Order imports
29 lines
546 B
TypeScript
29 lines
546 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 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;
|
|
}
|