| 263 | } |
| 264 | |
| 265 | export interface Info extends Tool { |
| 266 | /** |
| 267 | * Clear infos |
| 268 | */ |
| 269 | clear(): void |
| 270 | /** |
| 271 | * Add info |
| 272 | */ |
| 273 | add(name: string, content: string | (() => void)): void |
| 274 | /** |
| 275 | * Get info or infos |
| 276 | */ |
| 277 | get(): InfoItem[] |
| 278 | get(name: string): string |
| 279 | /** |
| 280 | * Remove specified info |
| 281 | */ |
| 282 | remove(name: string): void |
| 283 | } |
| 284 | |
| 285 | export interface InfoConstructor { |
| 286 | new (): Info |
no outgoing calls
no test coverage detected
searching dependent graphs…