1 import type { ContactEmail } from '@proton/shared/lib/interfaces/contacts/Contact'
2 import { BasePropertiesState } from './BasePropertiesState'
4 export type UserEvent = { name: string; payload: unknown }
6 export interface SyncedEditorStateValues {
7 contactEmails: ContactEmail[]
11 const DefaultValues: SyncedEditorStateValues = {
17 * Properties that are synced between the parent and the editor frame.
19 export class SyncedEditorState extends BasePropertiesState<SyncedEditorStateValues, UserEvent> {