mirror of
https://github.com/pooyash1998/chartspark.git
synced 2026-07-22 06:53:29 +00:00
6 lines
417 B
TypeScript
6 lines
417 B
TypeScript
// Minimal obsidian mock for unit tests
|
|
export class Plugin {}
|
|
export class Modal { open() {} close() {} }
|
|
export class Notice { constructor(_msg: string, _timeout?: number) {} hide() {} }
|
|
export class PluginSettingTab {}
|
|
export class Setting { setName() { return this; } setDesc() { return this; } addText() { return this; } addDropdown() { return this; } addToggle() { return this; } addSlider() { return this; } }
|