You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-07-06 23:56:13 +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;
|