mirror of
https://github.com/docmost/docmost.git
synced 2026-05-20 00:14:10 +08:00
aa6a046aa6
* feat: add loading state to export * feat: copy as markdown * preserve taskList comment
13 lines
411 B
TypeScript
13 lines
411 B
TypeScript
// Map @joplin/turndown types to @types/turndown
|
|
declare module "@joplin/turndown" {
|
|
import TurndownService from "turndown";
|
|
export = TurndownService;
|
|
}
|
|
|
|
declare module "@joplin/turndown-plugin-gfm" {
|
|
import TurndownService from "turndown";
|
|
export const tables: TurndownService.Plugin;
|
|
export const strikethrough: TurndownService.Plugin;
|
|
export const highlightedCodeBlock: TurndownService.Plugin;
|
|
}
|