mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-09 22:24:05 -08:00
af3ac2db28
Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <aditya@netroy.in>
25 lines
548 B
TypeScript
25 lines
548 B
TypeScript
export type IE2ETestPageElement = (
|
|
...args: unknown[]
|
|
) =>
|
|
| Cypress.Chainable<JQuery<HTMLElement>>
|
|
| Cypress.Chainable<JQuery<HTMLInputElement>>
|
|
| Cypress.Chainable<JQuery<HTMLButtonElement>>;
|
|
|
|
type Getter = IE2ETestPageElement | ((key: string | number) => IE2ETestPageElement);
|
|
|
|
export interface IE2ETestPage {
|
|
url?: string;
|
|
getters: Record<string, Getter>;
|
|
actions: Record<string, (...args: unknown[]) => void>;
|
|
}
|
|
|
|
interface Execution {
|
|
workflowId: string;
|
|
}
|
|
|
|
export interface ExecutionResponse {
|
|
data: {
|
|
results: Execution[];
|
|
};
|
|
}
|