mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-08-05 03:19:52 +08:00
205cd7a86d
Closes: BS-2946
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';
|
|
}
|