mirror of
https://github.com/Ellpeck/ObsidianJustSharePlease.git
synced 2024-11-23 10:58:36 +01:00
19 lines
268 B
TypeScript
19 lines
268 B
TypeScript
export const defaultSettings: JSPSettings = {
|
|
url: "http://localhost:8080",
|
|
shared: []
|
|
};
|
|
|
|
export interface JSPSettings {
|
|
|
|
url: string;
|
|
shared: SharedItem[];
|
|
|
|
}
|
|
|
|
export interface SharedItem {
|
|
|
|
id: string;
|
|
password: string;
|
|
path: string;
|
|
|
|
}
|