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