| 90 | abort(reason?: string): void; |
| 91 | throwIfAborted(): void; |
| 92 | } |
| 93 | |
| 94 | interface FeatureHandler { |
| 95 | readonly name: string; |
| 96 | readonly command: string; |
| 97 | readonly description: string; |
| 98 | execute(msg: Api.Message, args: string[], prefixes: string[]): Promise<void>; |
| 99 | } |
| 100 |
no outgoing calls
no test coverage detected