mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-09 08:45:55 +02:00
10 lines
249 B
TypeScript
10 lines
249 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();
|
||
|
}
|