mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-29 02:52:27 +08:00
14 lines
360 B
TypeScript
14 lines
360 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;
|
||
|
}
|