1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-11-23 22:36:32 +02:00
Files

8 lines
200 B
TypeScript

import { ElectronApplication } from '@playwright/test';
const getMainWindow = async (electronApp: ElectronApplication) => {
return await electronApp.firstWindow();
};
export default getMainWindow;