mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-11-05 07:41:31 +08:00
8 lines
196 B
TypeScript
8 lines
196 B
TypeScript
|
|
export interface TaskData {
|
||
|
|
safeImport?: boolean;
|
||
|
|
textImportedAsText?: boolean;
|
||
|
|
codeImportedAsCode?: boolean;
|
||
|
|
shrinkImages?: boolean;
|
||
|
|
replaceUnderscoresWithSpaces?: boolean;
|
||
|
|
}
|