export const ViewModes = { STANDARD: 'STANDARD', DELTA: 'DELTA', REDACTED: 'REDACTED', TEXT_HIGHLIGHTS: 'TEXT_HIGHLIGHTS', } as const; export type ViewMode = keyof typeof ViewModes;