( ...classes: (string | undefined | null | boolean)[] )
| 5 | import { ChatGPTMessage, Chunk, Properties } from "./models"; |
| 6 | |
| 7 | export function classNames( |
| 8 | ...classes: (string | undefined | null | boolean)[] |
| 9 | ): string { |
| 10 | return classes.filter(Boolean).join(" "); |
| 11 | } |
| 12 | |
| 13 | export function getNumRows(text: string, textWidth: number): number { |
| 14 | return text |
no outgoing calls
no test coverage detected