mirror of
https://github.com/zadam/trilium.git
synced 2026-02-26 16:20:55 +01:00
19 lines
484 B
TypeScript
19 lines
484 B
TypeScript
/*
|
|
* 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;
|
|
}
|
|
|
|
declare module 'normalize-strings' {
|
|
function normalizeString(string: string): string;
|
|
export = normalizeString;
|
|
} |