mirror of
https://github.com/mnaoumov/obsidian-advanced-debug-mode.git
synced 2026-07-22 05:44:00 +00:00
8 lines
180 B
TypeScript
8 lines
180 B
TypeScript
|
|
import { WidgetType } from '@codemirror/view';
|
||
|
|
|
||
|
|
export class SampleWidget extends WidgetType {
|
||
|
|
public toDOM(): HTMLElement {
|
||
|
|
return createEl('span', { text: '👉' });
|
||
|
|
}
|
||
|
|
}
|