mirror of
https://github.com/ckelsoe/obsidian-rss-importer.git
synced 2026-07-22 07:48:56 +00:00
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.
11 lines
327 B
TypeScript
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;
|
|
}
|
|
}
|