ljcoder2015_obsidian-excel/src/utils/Settings.ts
2023-11-03 14:16:45 +08:00

19 lines
409 B
TypeScript

export interface ExcelSettings {
folder: string;
excelFilenamePrefix: string,
excelFilenameDateTime: string,
sheetHeight: string,
rowHeight: string,
colWidth: string,
theme: string
}
export const DEFAULT_SETTINGS: ExcelSettings = {
folder: "/",
excelFilenamePrefix: "Excel ",
excelFilenameDateTime: "YYYY-MM-DD HH.mm.ss",
sheetHeight: "300",
rowHeight: "25",
colWidth: "100",
theme: "light"
};