7 lines
185 B
TypeScript
7 lines
185 B
TypeScript
import type { AutomationResultDTO } from './AutomationResultDTO';
|
|
|
|
export interface WaitResultDTO extends AutomationResultDTO {
|
|
target: string;
|
|
waitedMs: number;
|
|
found: boolean;
|
|
} |