mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-25 14:28:51 +08:00
12 lines
245 B
TypeScript
12 lines
245 B
TypeScript
import { BaseTool } from '@blocksuite/std/gfx';
|
|
|
|
export class TemplateTool extends BaseTool {
|
|
static override toolName: string = 'template';
|
|
}
|
|
|
|
declare module '@blocksuite/std/gfx' {
|
|
interface GfxToolsMap {
|
|
template: TemplateTool;
|
|
}
|
|
}
|