mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-30 08:26:59 +02:00
10 lines
251 B
TypeScript
10 lines
251 B
TypeScript
// 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();
|
|
}
|