( self: Command<Name, Input, ContextInput, E, R> )
| 65 | * For use by internal modules that need access to config, parse, handle, etc. |
| 66 | */ |
| 67 | export const toImpl = <Name extends string, Input, E, R, ContextInput = {}>( |
| 68 | self: Command<Name, Input, ContextInput, E, R> |
| 69 | ): CommandInternal<Name, Input, E, R, ContextInput> => self as CommandInternal<Name, Input, E, R, ContextInput> |
| 70 | |
| 71 | /* ========================================================================== */ |
| 72 | /* Proto */ |
no outgoing calls
no test coverage detected
searching dependent graphs…