forked from grafana.jool/grafana-jool
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
584 B
22 lines
584 B
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
// This file was almost autogenerated by cuetsy.
|
|
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
export const modelVersion = Object.freeze([0, 0]);
|
|
|
|
export enum TextMode {
|
|
HTML = 'html',
|
|
Markdown = 'markdown',
|
|
}
|
|
|
|
export interface PanelOptions {
|
|
content: string;
|
|
mode: TextMode;
|
|
}
|
|
|
|
export const defaultPanelOptions: PanelOptions = {
|
|
content: `# Title
|
|
|
|
For markdown syntax help: [commonmark.org/help](https://commonmark.org/help/)`,
|
|
mode: TextMode.Markdown,
|
|
};
|
|
|