grafana/public/app/features/canvas/frame.ts

7 lines
173 B
TypeScript
Raw Normal View History

import { CanvasElementOptions } from './element';
export interface CanvasFrameOptions extends CanvasElementOptions {
type: 'frame';
elements: CanvasElementOptions[];
}