mirror of
https://github.com/grafana/grafana.git
synced 2025-02-13 00:55:47 -06:00
7 lines
173 B
TypeScript
7 lines
173 B
TypeScript
|
import { CanvasElementOptions } from './element';
|
||
|
|
||
|
export interface CanvasFrameOptions extends CanvasElementOptions {
|
||
|
type: 'frame';
|
||
|
elements: CanvasElementOptions[];
|
||
|
}
|