server-ts: Port services/notes & hidden_subtree

This commit is contained in:
Elian Doran
2024-02-17 22:58:54 +02:00
parent 669988953d
commit de7f4de05b
31 changed files with 267 additions and 202 deletions

14
src/types.d.ts vendored Normal file
View 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;
}