Interface SortFormat
interface SortFormat {
clean?: boolean;
compress?: boolean;
formats: string[];
highValue: PriceExpression;
logger?: BasicLogger;
mark?: Set<string>;
output: string;
path: string;
sort?: ExportExcel.Options.Sort;
theme?: "dark" | "light";
}
clean?: boolean;
compress?: boolean;
formats: string[];
highValue: PriceExpression;
logger?: BasicLogger;
mark?: Set<string>;
output: string;
path: string;
sort?: ExportExcel.Options.Sort;
theme?: "dark" | "light";
}
Hierarchy
- ConfigCmd.Sort
- SortFormat (View Summary)
Properties
Optionalclean
clean?: boolean
When true, remove existing sorted output before regenerating.
Optionalcompress
compress?: boolean
When true, the output sorted format CardDBs are compressed.
formats
formats: string[]
Scryfall game formats and sort order.
highValue
When defined sorted collections are separated into high value binders.
Optionallogger
Optional logger interface.
Optionalmark
A set of CSV file names in the conversion process to mark / highlight for merging.
output
output: string
Output directory for spreadsheets.
path
path: string
Input JSON file path post conversion.
Optionalsort
Various sort options.
Optionaltheme
theme?: "dark" | "light"
Theme name.
Config object for the
sortFormatcommand.