Files
gridpilot.gg/apps/companion/main/automation/application/dto/WaitResultDTO.ts

7 lines
185 B
TypeScript

import type { AutomationResultDTO } from './AutomationResultDTO';
export interface WaitResultDTO extends AutomationResultDTO {
target: string;
waitedMs: number;
found: boolean;
}