mirror of
https://github.com/ljcoder2015/obsidian-excel.git
synced 2026-07-22 08:30:28 +00:00
19 lines
409 B
TypeScript
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"
|
|
};
|