File size: 488 Bytes
595d052
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import type { LoadingStatus } from "js/statustracker";

export interface MarkdownProps {
	value: string;
	sanitize_html: boolean;
	header_links: boolean;
	latex_delimiters: { left: string; right: string; display: boolean }[];
	rtl: boolean;
	line_breaks: boolean;
	padding: boolean;
	buttons: string[] | null;
	height: number | null;
	min_height: number | null;
	max_height: number | null;
}

export interface MarkdownEvents {
	change: string;
	copy: any;
	clear_status: LoadingStatus;
}