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

7 lines
173 B
TypeScript

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