Files
gridpilot.gg/core/automation/application/dto/NavigationResultDTO.ts
2025-12-15 13:46:07 +01:00

6 lines
170 B
TypeScript

import type { AutomationResultDTO } from './AutomationResultDTO';
export interface NavigationResultDTO extends AutomationResultDTO {
url: string;
loadTime: number;
}