feat(plugins): add bundled relays workspace panel plugin

This commit is contained in:
Federico Jaramillo Martinez
2026-07-28 23:14:21 +02:00
parent d19fca4090
commit 87c09982e9
13 changed files with 1591 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
/**
* Minimal declarations for the vendored marked ESM build (./marked.esm.js).
* Covers only the surface markdownDocument.ts uses; widen it if usage grows.
* The plugin build copies the .js verbatim and skips this file, so these
* declarations exist for tsc and editor tooling only.
*/
export interface MarkedHtmlToken {
text: string;
}
export interface MarkedRenderer {
html: (token: MarkedHtmlToken) => string;
}
export interface MarkedParseOptions {
async?: false;
breaks?: boolean;
gfm?: boolean;
renderer?: MarkedRenderer;
}
export interface Marked {
Renderer: new () => MarkedRenderer;
parse(source: string, options?: MarkedParseOptions): string;
}
export const marked: Marked;