import type { CommandType } from "./command-registry"; export type SensitiveCommand = { commandName: string; commandType: CommandType; commandContent: string; qoS: 0 | 1 | 2; isRetained: boolean; }