Files
Signal-Desktop/ts/types/Util.ts
Scott Nonnenberg 3c69886320 Finish new Message component, integrate into application
Also:
- New schema version 8 with video/image thumbnails, screenshots, sizes
- Upgrade messages not at current schema version when loading messages
  to show in conversation
- New MessageDetail react component
- New ConversationHeader react component
2018-07-17 15:58:07 -07:00

21 lines
331 B
TypeScript

export type RenderTextCallback = (
options: {
text: string;
key: number;
}
) => JSX.Element | string;
export type Localizer = (key: string, values?: Array<string>) => string;
export type Color =
| 'gray'
| 'blue'
| 'cyan'
| 'deep_orange'
| 'green'
| 'indigo'
| 'pink'
| 'purple'
| 'red'
| 'teal';