export type IE2ETestPageElement = ( ...args: unknown[] ) => | Cypress.Chainable> | Cypress.Chainable> | Cypress.Chainable>; type Getter = IE2ETestPageElement | ((key: string | number) => IE2ETestPageElement); export interface IE2ETestPage { url?: string; getters: Record; actions: Record void>; } interface Execution { workflowId: string; } export interface ExecutionResponse { data: { results: Execution[]; }; }