TTMT.ManageWebGUI/src/types/sensitive-command.ts

9 lines
218 B
TypeScript
Raw Normal View History

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