mirror of
https://github.com/mnaoumov/obsidian-backlink-full-path.git
synced 2026-07-22 12:10:28 +00:00
7 lines
180 B
TypeScript
7 lines
180 B
TypeScript
import { WidgetType } from '@codemirror/view';
|
|
|
|
export class SampleWidget extends WidgetType {
|
|
public toDOM(): HTMLElement {
|
|
return createEl('span', { text: '👉' });
|
|
}
|
|
}
|