mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
3028ad3c61
🎨 Format root-level dirs
13 lines
344 B
TypeScript
13 lines
344 B
TypeScript
export type IE2ETestPageElement = (
|
|
...args: any[]
|
|
) =>
|
|
| Cypress.Chainable<JQuery<HTMLElement>>
|
|
| Cypress.Chainable<JQuery<HTMLInputElement>>
|
|
| Cypress.Chainable<JQuery<HTMLButtonElement>>;
|
|
|
|
export interface IE2ETestPage {
|
|
url?: string;
|
|
getters: Record<string, IE2ETestPageElement>;
|
|
actions: Record<string, (...args: any[]) => void>;
|
|
}
|