1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-18 09:35:20 +02:00
joplin/packages/app-mobile/utils/testing/getWebViewDomById.ts

8 lines
218 B
TypeScript

import getWebViewWindowById from './getWebViewWindowById';
const getWebViewDomById = async (id: string): Promise<Document> => {
return (await getWebViewWindowById(id)).document;
};
export default getWebViewDomById;