mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-08-22 12:32:00 +08:00
17 lines
406 B
TypeScript
17 lines
406 B
TypeScript
import type { TelemetryEvent } from './types.js';
|
|
|
|
export type LinkEventType =
|
|
| 'CopiedLink'
|
|
| 'OpenedAliasPopup'
|
|
| 'SavedAlias'
|
|
| 'ResetedAlias'
|
|
| 'OpenedViewSelector'
|
|
| 'SelectedView'
|
|
| 'OpenedCaptionEditor'
|
|
| 'OpenedCardStyleSelector'
|
|
| 'SelectedCardStyle'
|
|
| 'OpenedCardScaleSelector'
|
|
| 'SelectedCardScale';
|
|
|
|
export type LinkToolbarEvents = Record<LinkEventType, TelemetryEvent>;
|