mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2026-07-14 08:57:20 +02:00
3028ad3c61
🎨 Format root-level dirs
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> = {};
|
|
}
|