You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-07-13 00:10:37 +02:00
Chore: Mobile: Improve Notes
screen type safety (#11093)
This commit is contained in:
@ -24,11 +24,13 @@ const { isImageMimeType } = require('../resourceUtils');
|
||||
const { MarkupToHtml } = require('@joplin/renderer');
|
||||
const { ALL_NOTES_FILTER_ID } = require('../reserved-ids');
|
||||
|
||||
export interface PreviewsOrder {
|
||||
by: string;
|
||||
dir: string;
|
||||
}
|
||||
|
||||
interface PreviewsOptions {
|
||||
order?: {
|
||||
by: string;
|
||||
dir: string;
|
||||
}[];
|
||||
order?: PreviewsOrder[];
|
||||
conditions?: string[];
|
||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
|
||||
conditionsParams?: any[];
|
||||
|
Reference in New Issue
Block a user