You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-11-29 22:48:10 +02:00
- Joplin Server: Adds support for sharing a notebook - Desktop: Adds support for sharing a notebook with Joplin Server - Mobile: Adds support for reading and writing to a shared notebook (not possible to share a notebook) - Cli: Adds support for reading and writing to a shared notebook (not possible to share a notebook)
13 lines
380 B
JavaScript
13 lines
380 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
class JoplinError extends Error {
|
|
constructor(message, code = null, details = null) {
|
|
super(message);
|
|
this.code = null;
|
|
this.details = '';
|
|
this.code = code;
|
|
this.details = details;
|
|
}
|
|
}
|
|
exports.default = JoplinError;
|
|
//# sourceMappingURL=JoplinError.js.map
|