-
Notifications
You must be signed in to change notification settings - Fork 126
/
Copy pathtypes.d.ts
34 lines (28 loc) · 881 Bytes
/
types.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*
* 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 default unescape;
}
declare module "html2plaintext" {
function html2plaintext(htmlText: string): string;
export default html2plaintext;
}
declare module "normalize-strings" {
function normalizeString(string: string): string;
export default normalizeString;
}
declare module "@joplin/turndown-plugin-gfm" {
import TurndownService from "turndown";
namespace gfm {
function gfm(service: TurndownService): void;
}
export default gfm;
}
declare module "is-animated" {
function isAnimated(buffer: Buffer): boolean;
export default isAnimated;
}
declare module "script-loader!mark.js/dist/jquery.mark.min.js";