1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-01-20 18:48:28 +02:00

10 lines
251 B
TypeScript
Raw Normal View History

// Just a convenient wrapper to get a typed bridge in TypeScript
import { Bridge } from '../bridge';
const remoteBridge = require('@electron/remote').require('./bridge').default;
export default function bridge(): Bridge {
return remoteBridge();
}