( self: Command<Name, Input, ContextInput, E, R>, f: (handler: Effect.Effect<void, E | CliError.CliError, R | Environment>, input: Input) => Effect.Effect<void, E2, R2> )
| 1181 | self: Command<Name, Input, ContextInput, E, R>, |
| 1182 | shortDescription: string |
| 1183 | ): Command<Name, Input, ContextInput, E, R> |
| 1184 | } = dual(2, <const Name extends string, Input, E, R, ContextInput>( |
| 1185 | self: Command<Name, Input, ContextInput, E, R>, |
| 1186 | shortDescription: string |
| 1187 | ) => makeCommand({ ...toImpl(self), shortDescription })) |
| 1188 | |
| 1189 | /** |
| 1190 | * Sets an alias for a command. |
| 1191 | * |
| 1192 | * **Details** |
no test coverage detected
searching dependent graphs…