import { DbEntity, Id, MultilineText, Username } from "./shared.mjs"; export interface CommandForDevice extends DbEntity { date: Date; cmd: "redirect" | "cleandb"; arg: string; forDevices?: Id; messageToUser: string; executedBy?: Username[]; executionLog: MultilineText; by: Username; on: "client" | "server"; response?: []; } //# sourceMappingURL=CommandForDevice.d.mts.map