import { StateNode } from '@bigbluebutton/editor' import { Drawing } from './toolStates/Drawing' import { Idle } from './toolStates/Idle' /** @public */ export class DrawShapeTool extends StateNode { static override id = 'draw' static override initial = 'idle' static override children = () => [Idle, Drawing] override shapeType = 'draw' override onExit = () => { const drawingState = this.children!['drawing'] as Drawing drawingState.initialShape = undefined } }