ObsidianJustSharePlease/src/settings.ts

20 lines
268 B
TypeScript
Raw Normal View History

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