You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-06-12 22:57:38 +02:00
Changed export to module.exports
This commit is contained in:
@ -435,4 +435,4 @@ BaseItem.syncItemDefinitions_ = [
|
||||
{ type: BaseModel.TYPE_NOTE_TAG, className: 'NoteTag' },
|
||||
];
|
||||
|
||||
export { BaseItem };
|
||||
module.exports = { BaseItem };
|
@ -152,4 +152,4 @@ class Folder extends BaseItem {
|
||||
|
||||
}
|
||||
|
||||
export { Folder };
|
||||
module.exports = { Folder };
|
@ -25,4 +25,4 @@ class NoteTag extends BaseItem {
|
||||
|
||||
}
|
||||
|
||||
export { NoteTag };
|
||||
module.exports = { NoteTag };
|
@ -430,4 +430,4 @@ class Note extends BaseItem {
|
||||
Note.updateGeolocationEnabled_ = true;
|
||||
Note.geolocationUpdating_ = false;
|
||||
|
||||
export { Note };
|
||||
module.exports = { Note };
|
@ -80,4 +80,4 @@ class Resource extends BaseItem {
|
||||
|
||||
Resource.IMAGE_MAX_DIMENSION = 1920;
|
||||
|
||||
export { Resource };
|
||||
module.exports = { Resource };
|
@ -386,4 +386,4 @@ Setting.constants_ = {
|
||||
tempDir: '',
|
||||
}
|
||||
|
||||
export { Setting };
|
||||
module.exports = { Setting };
|
@ -89,4 +89,4 @@ class Tag extends BaseItem {
|
||||
|
||||
}
|
||||
|
||||
export { Tag };
|
||||
module.exports = { Tag };
|
Reference in New Issue
Block a user