2024-02-17 22:58:54 +02:00
|
|
|
/*
|
|
|
|
* This file contains type definitions for libraries that did not have one
|
|
|
|
* in its library or in `@types/*` packages.
|
|
|
|
*/
|
|
|
|
|
|
|
|
declare module 'unescape' {
|
|
|
|
function unescape(str: string, type?: string): string;
|
|
|
|
export = unescape;
|
|
|
|
}
|
|
|
|
|
|
|
|
declare module 'html2plaintext' {
|
|
|
|
function html2plaintext(htmlText: string): string;
|
|
|
|
export = html2plaintext;
|
2024-02-18 11:16:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
declare module 'normalize-strings' {
|
|
|
|
function normalizeString(string: string): string;
|
|
|
|
export = normalizeString;
|
2024-02-19 21:59:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
declare module 'joplin-turndown-plugin-gfm' {
|
2024-07-18 21:28:51 +03:00
|
|
|
import TurndownService = require('turndown');
|
2024-02-19 21:59:40 +02:00
|
|
|
namespace gfm {
|
|
|
|
function gfm(service: TurndownService): void;
|
|
|
|
}
|
|
|
|
export = gfm;
|
2024-02-20 23:29:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
declare module 'is-animated' {
|
|
|
|
function isAnimated(buffer: Buffer): boolean;
|
|
|
|
export = isAnimated;
|
2024-02-17 22:58:54 +02:00
|
|
|
}
|