mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 17:46:45 +00:00
7 lines
222 B
TypeScript
7 lines
222 B
TypeScript
import { IE2ETestPage, IE2ETestPageElement } from '../types';
|
|
|
|
export class BasePage implements IE2ETestPage {
|
|
getters: Record<string, IE2ETestPageElement> = {};
|
|
actions: Record<string, (...args: any[]) => void> = {};
|
|
}
|