mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-18 09:35:20 +02:00
8 lines
218 B
TypeScript
8 lines
218 B
TypeScript
import getWebViewWindowById from './getWebViewWindowById';
|
|
|
|
const getWebViewDomById = async (id: string): Promise<Document> => {
|
|
return (await getWebViewWindowById(id)).document;
|
|
};
|
|
|
|
export default getWebViewDomById;
|