server-ts: Port services/export/md

This commit is contained in:
Elian Doran
2024-02-19 21:59:40 +02:00
parent 0903cf2646
commit ec4bd6659a
6 changed files with 29 additions and 7 deletions

8
src/types.d.ts vendored
View File

@@ -16,4 +16,12 @@ declare module 'html2plaintext' {
declare module 'normalize-strings' {
function normalizeString(string: string): string;
export = normalizeString;
}
declare module 'joplin-turndown-plugin-gfm' {
import TurndownService = require("turndown");
namespace gfm {
function gfm(service: TurndownService): void;
}
export = gfm;
}