ckelsoe_obsidian-rss-importer/types.d.ts
Charles Kelsoe 35ac67a806 Scaffold from standard plugin template
Bootstrap obsidian-rss-importer from plugin-templates/standard: placeholders
substituted, isDesktopOnly set true, Turndown + jsdom test deps added, esbuild
bumped to 0.28.1 to clear advisory GHSA-gv7w-rqvm-qjhr (matches shell-path-copy).
Build and lint green; main.ts is a wiring-only stub pending feature phases.
2026-06-14 13:57:19 -04:00

11 lines
327 B
TypeScript

// Local type augmentations for the Obsidian API.
// Add type declarations here when the Obsidian types are missing or need extension.
// NEVER use `as any` to work around missing types. Add a proper declaration here instead.
import 'obsidian';
declare module 'obsidian' {
interface PluginManifest {
version: string;
}
}