grafana/public/app/features/canvas/frame.ts
2022-05-03 22:58:00 -07:00

7 lines
173 B
TypeScript

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