(
params: {
command: ClientBackedCliCommandName;
} & ClientCommandParams,
)
| 50 | } |
| 51 | |
| 52 | async function runGenericClientBackedCommand( |
| 53 | params: { |
| 54 | command: ClientBackedCliCommandName; |
| 55 | } & ClientCommandParams, |
| 56 | ): Promise<boolean> { |
| 57 | const { runGenericClientBackedCommand } = await import('./generic.ts'); |
| 58 | return await runGenericClientBackedCommand(params); |
| 59 | } |
no outgoing calls
no test coverage detected