import * as sharedTypes from '../shared-types'; export type Char = { readonly type: 'char'; readonly value: string; readonly pending?: boolean; readonly composition?: readonly CharAtom[]; }; export type Style = { readonly color?: string; readonly cancel?: number; }; type Common = { readonly id: number; style: Readonly