1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-11-23 22:36:32 +02:00

Chore: Cli: Migrate most commands to TypeScript (#9552)

This commit is contained in:
Henry Heino
2023-12-20 11:08:07 -08:00
committed by GitHub
parent ddebeb68b2
commit 4ec2fb216e
26 changed files with 252 additions and 199 deletions

View File

@@ -16,8 +16,7 @@ export enum MarkdownTableJustify {
export interface MarkdownTableHeader {
name: string;
label: string;
// eslint-disable-next-line @typescript-eslint/ban-types -- Old code before rule was applied
filter?: Function;
filter?: (content: string)=> string;
disableEscape?: boolean;
disableHtmlEscape?: boolean;
justify?: MarkdownTableJustify;