mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-22 04:26:23 +08:00
9 lines
180 B
TypeScript
9 lines
180 B
TypeScript
import { BaseTool } from '@blocksuite/std/gfx';
|
|
|
|
/**
|
|
* Empty tool that does nothing.
|
|
*/
|
|
export class EmptyTool extends BaseTool {
|
|
static override toolName: string = 'empty';
|
|
}
|