bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/whiteboard/custom-tools/noop-tool/component.ts
KDSBrowne 7512d4c60e lint
2024-05-02 00:32:58 +00:00

15 lines
354 B
TypeScript

import { StateNode } from '@tldraw/tldraw'
export class NoopTool extends StateNode {
static override id = 'noop';
static override initial = 'idle';
override onEnter = () => {
this.editor.setCursor({ type: 'default', rotation: 0 });
}
override onExit = () => {
this.editor.setCursor({ type: 'default', rotation: 0 });
}
}