| 50 | // --------------------------------------------------------------------------- |
| 51 | |
| 52 | export interface ChannelAttachment { |
| 53 | /** Original filename */ |
| 54 | filename: string; |
| 55 | /** Local path (relative to channel dir) */ |
| 56 | localPath: string; |
| 57 | /** MIME type if known */ |
| 58 | mimeType?: string; |
| 59 | /** File size in bytes */ |
| 60 | size?: number; |
| 61 | } |
| 62 | |
| 63 | export interface ChannelMessage { |
| 64 | /** Unique ID within the channel */ |
nothing calls this directly
no outgoing calls
no test coverage detected