mirror of
https://github.com/vrtmrz/obsidian-livesync.git
synced 2025-12-12 17:25:56 +00:00
13 lines
413 B
TypeScript
13 lines
413 B
TypeScript
import { AbstractObsidianModule, type IObsidianModule } from "../AbstractObsidianModule.ts";
|
|
|
|
export class ModuleExtraSyncObsidian extends AbstractObsidianModule implements IObsidianModule {
|
|
deviceAndVaultName: string = "";
|
|
|
|
$$getDeviceAndVaultName(): string {
|
|
return this.deviceAndVaultName;
|
|
}
|
|
$$setDeviceAndVaultName(name: string): void {
|
|
this.deviceAndVaultName = name;
|
|
}
|
|
}
|