mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-18 02:26:21 +08:00
b995b4f965
Close [BS-2711](https://linear.app/affine-design/issue/BS-2711/page-block埋点更新)
12 lines
272 B
TypeScript
12 lines
272 B
TypeScript
import type { TelemetryEvent } from './types.js';
|
|
|
|
export type NoteEventType = 'NoteDisplayModeChanged';
|
|
|
|
export type NoteEvents = {
|
|
NoteDisplayModeChanged: TelemetryEvent & {
|
|
control: 'display mode';
|
|
type: 'note';
|
|
};
|
|
EdgelessNoteEditing: TelemetryEvent;
|
|
};
|