index.ts 257 B

123456789101112131415
  1. export type Banner = {
  2. id: string;
  3. type: string;
  4. title?: string;
  5. content: string;
  6. url?: string;
  7. dismissible?: boolean;
  8. timestamp: number;
  9. };
  10. export enum TTS_RESPONSE_SPLIT {
  11. PUNCTUATION = 'punctuation',
  12. PARAGRAPHS = 'paragraphs',
  13. NONE = 'none'
  14. }