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