mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-14 21:27:20 +00:00
12 lines
286 B
TypeScript
12 lines
286 B
TypeScript
import { BaseTool } from '@blocksuite/std/gfx';
|
|
|
|
import type { NavigatorMode } from './frame-manager';
|
|
|
|
export type PresentToolOption = {
|
|
mode?: NavigatorMode;
|
|
};
|
|
|
|
export class PresentTool extends BaseTool<PresentToolOption> {
|
|
static override toolName: string = 'frameNavigator';
|
|
}
|