mirror of
https://github.com/nathonius/obsidian-github-link.git
synced 2026-07-22 09:20:25 +00:00
Update obsidian package to latest for SecretStorage types. Add missing members to test mocks for API compatibility.
18 lines
411 B
TypeScript
18 lines
411 B
TypeScript
import type { App, PluginSettingTab, Plugin } from "obsidian";
|
|
|
|
export class PluginSettingTabMock implements PluginSettingTab {
|
|
icon: string = "";
|
|
constructor(
|
|
public app: App,
|
|
public plugin: Plugin,
|
|
) {}
|
|
get containerEl(): HTMLElement {
|
|
throw new Error("Not implemented.");
|
|
}
|
|
display() {
|
|
throw new Error("Method not implemented.");
|
|
}
|
|
hide() {
|
|
throw new Error("Method not implemented.");
|
|
}
|
|
}
|