canvas-website/src/tools/EmbedTool.ts

9 lines
267 B
TypeScript

import { BaseBoxShapeTool } from "tldraw";
export class EmbedTool extends BaseBoxShapeTool {
static override id = 'Embed'
shapeType = 'Embed';
override initial = 'idle';
// Additional methods for handling video chat functionality can be added here
}