From 50645674572c205cfd5d19755b968d77bd9ad165 Mon Sep 17 00:00:00 2001 From: skycurtain Date: Wed, 29 Oct 2025 23:54:36 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AE=BE=E8=AE=A1tracer?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/tracers.ts/command.ts | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/tracers.ts/command.ts diff --git a/src/tracers.ts/command.ts b/src/tracers.ts/command.ts new file mode 100644 index 0000000..5cb4a50 --- /dev/null +++ b/src/tracers.ts/command.ts @@ -0,0 +1,7 @@ +import type { TracerAction } from "./action-type"; + +export type Command = { + tracer: string; + action: TracerAction; + params: any; +} \ No newline at end of file