mirror of
https://github.com/grafana/grafana.git
synced 2025-02-11 16:15:42 -06:00
8 lines
211 B
TypeScript
8 lines
211 B
TypeScript
import { CanvasElementOptions } from './element';
|
|
|
|
export interface CanvasGroupOptions extends CanvasElementOptions {
|
|
type: 'group';
|
|
elements: CanvasElementOptions[];
|
|
// layout? // absolute, list, grid?
|
|
}
|