(id: string)
| 16 | type Actionable = Document | Row | File | Team | Membership; |
| 17 | |
| 18 | function normalize(id: string): string { |
| 19 | const trimmed = id.trim(); |
| 20 | return trimmed === "" ? "*" : trimmed; |
| 21 | } |
| 22 | |
| 23 | export class Channel<T> { |
| 24 | declare _type: T; |