mirror of
https://github.com/Ellpeck/ObsidianJustSharePlease.git
synced 2024-11-23 10:58:36 +01:00
24 lines
522 B
TypeScript
24 lines
522 B
TypeScript
export const defaultSettings: JSPSettings = {
|
|
url: "http://localhost:8080",
|
|
shared: [],
|
|
stripFrontmatter: true
|
|
};
|
|
|
|
// TODO add a setting for auto-refreshing uploads when saving
|
|
// TODO add a setting for auto-removing JSP shares when the original file is deleted
|
|
export interface JSPSettings {
|
|
|
|
url: string;
|
|
shared: SharedItem[];
|
|
stripFrontmatter: boolean;
|
|
|
|
}
|
|
|
|
export interface SharedItem {
|
|
|
|
id: string;
|
|
password: string;
|
|
// TODO auto-update path when file is moved
|
|
path: string;
|
|
|
|
}
|