chore(prettier): fix all files

This commit is contained in:
Elian Doran
2025-01-09 18:07:02 +02:00
parent 19ee861699
commit 4cbb529fd4
571 changed files with 23226 additions and 23940 deletions

10
src/types.d.ts vendored
View File

@@ -3,22 +3,22 @@
* in its library or in `@types/*` packages.
*/
declare module 'unescape' {
declare module "unescape" {
function unescape(str: string, type?: string): string;
export default unescape;
}
declare module 'html2plaintext' {
declare module "html2plaintext" {
function html2plaintext(htmlText: string): string;
export default html2plaintext;
}
declare module 'normalize-strings' {
declare module "normalize-strings" {
function normalizeString(string: string): string;
export default normalizeString;
}
declare module 'joplin-turndown-plugin-gfm' {
declare module "joplin-turndown-plugin-gfm" {
import TurndownService from "turndown";
namespace gfm {
function gfm(service: TurndownService): void;
@@ -26,7 +26,7 @@ declare module 'joplin-turndown-plugin-gfm' {
export default gfm;
}
declare module 'is-animated' {
declare module "is-animated" {
function isAnimated(buffer: Buffer): boolean;
export default isAnimated;
}