mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-09 22:24:05 -08: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> = {};
|
|
}
|