mirror of
https://github.com/zadam/trilium.git
synced 2025-11-05 04:45:47 +01:00
server-ts: Port services/notes & hidden_subtree
This commit is contained in:
14
src/types.d.ts
vendored
Normal file
14
src/types.d.ts
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
/*
|
||||
* 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;
|
||||
}
|
||||
Reference in New Issue
Block a user