mirror of
https://github.com/zadam/trilium.git
synced 2024-11-18 05:35:56 +08:00
16 lines
167 B
JavaScript
16 lines
167 B
JavaScript
|
class Actions {
|
||
|
constructor() {
|
||
|
this.JUMP_TO = "";
|
||
|
}
|
||
|
}
|
||
|
|
||
|
const actions = new Actions();
|
||
|
|
||
|
function bind() {
|
||
|
|
||
|
}
|
||
|
|
||
|
export default {
|
||
|
actions,
|
||
|
bind
|
||
|
};
|