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;