ObsidianJustSharePlease/src/settings.ts

22 lines
327 B
TypeScript
Raw Normal View History

2023-08-11 19:01:10 +02:00
export const defaultSettings: JSPSettings = {
url: "http://localhost:8080",
2023-08-16 12:47:47 +02:00
shared: [],
stripFrontmatter: true
2023-08-11 19:01:10 +02:00
};
2023-06-25 18:16:06 +02:00
export interface JSPSettings {
2023-08-11 19:01:10 +02:00
url: string;
shared: SharedItem[];
2023-08-16 12:47:47 +02:00
stripFrontmatter: boolean;
2023-08-11 19:01:10 +02:00
}
export interface SharedItem {
id: string;
password: string;
path: string;
2023-06-25 18:16:06 +02:00
}