mirror of
https://github.com/Ellpeck/ObsidianJustSharePlease.git
synced 2024-11-26 20:28:34 +01:00
27 lines
510 B
TypeScript
27 lines
510 B
TypeScript
export const defaultSettings: JSPSettings = {
|
|
url: "https://jsp.ellpeck.de",
|
|
shared: [],
|
|
stripFrontmatter: true,
|
|
includeNoteName: true,
|
|
unshareDeletedFiles: true,
|
|
autoUpdateShares: false
|
|
};
|
|
|
|
export interface JSPSettings {
|
|
|
|
url: string;
|
|
shared: SharedItem[];
|
|
stripFrontmatter: boolean;
|
|
includeNoteName: boolean;
|
|
unshareDeletedFiles: boolean;
|
|
autoUpdateShares: boolean;
|
|
|
|
}
|
|
|
|
export interface SharedItem {
|
|
|
|
id: string;
|
|
password: string;
|
|
path: string;
|
|
|
|
}
|