| 22 | } |
| 23 | |
| 24 | interface String { |
| 25 | /** |
| 26 | * Capitalize the first letter of a string |
| 27 | */ |
| 28 | capitalize(): string; |
| 29 | /** |
| 30 | * Generate a hash from a string |
| 31 | */ |
| 32 | hashCode(): string; |
| 33 | } |
| 34 | |
| 35 | type ExecutorCallback = ( |
| 36 | type: "stdout" | "stderr" | "exit", |
no outgoing calls
no test coverage detected