Lines Matching full:readonly
25 readonly ref?: string; // This is a common attribute used in Perfetto.
26 readonly style?: Style;
27 readonly id?: string;
28 readonly title?: string;
29 readonly className?: string;
30 readonly onclick?: (e: PointerEvent) => void;
31 readonly onmouseover?: (e: MouseEvent) => void;
32 readonly onmouseout?: (e: MouseEvent) => void;
33 readonly onmousedown?: (e: MouseEvent) => void;
34 readonly onmouseup?: (e: MouseEvent) => void;
35 readonly onmousemove?: (e: MouseEvent) => void;
36 readonly onload?: (e: Event) => void;
40 readonly onblur?: (e: FocusEvent) => void;
41 readonly onfocus?: (e: FocusEvent) => void;
45 readonly disabled?: boolean;
46 readonly type?: string;
47 readonly onchange?: (e: Event) => void;
48 readonly oninput?: (e: KeyboardEvent) => void;
49 readonly onkeydown?: (e: KeyboardEvent) => void;
50 readonly onkeyup?: (e: KeyboardEvent) => void;
51 readonly value?: string;
52 readonly placeholder?: string;
56 readonly checked?: boolean;
62 readonly href?: string;
63 readonly target?: string;
67 readonly for?: string;