MCPcopy Index your code
hub / github.com/callstack/agent-device / replayCommand

Function replayCommand

src/cli/commands/replay.ts:11–17  ·  view source on GitHub ↗
(params)

Source from the content-addressed store, hash-verified

9type ReplayCommandParams = Parameters<ClientCommandHandler>[0];
10
11export const replayCommand: ClientCommandHandler = async (params) => {
12 const { positionals } = params;
13 if (positionals[0] !== 'export') {
14 return handleReplayRunCommand(params);
15 }
16 return await handleReplayExportCommand(params);
17};
18
19function handleReplayRunCommand({ positionals, flags }: ReplayCommandParams): false {
20 if (positionals.length > 1) {

Callers

nothing calls this directly

Calls 2

handleReplayRunCommandFunction · 0.85

Tested by

no test coverage detected