File tree Expand file tree Collapse file tree 3 files changed +9
-0
lines changed
Expand file tree Collapse file tree 3 files changed +9
-0
lines changed Original file line number Diff line number Diff line change 11import type { CSSProperties , HTMLAttributes } from 'react' ;
22
3+ /**
4+ * ⚠️ __INTERNAL__ use only! This interface is not part of the public API.
5+ */
36export interface CommonProps < T = HTMLElement > extends Omit < HTMLAttributes < T > , 'dangerouslySetInnerHTML' > {
47 /**
58 * Element style which will be appended to the most outer element of a component.
Original file line number Diff line number Diff line change 1+ /**
2+ * ⚠️ __INTERNAL__ use only! This interface is not part of the public API.
3+ */
14export interface Ui5CustomEvent < EventTarget = HTMLElement , Detail = never >
25 extends Omit < CustomEvent < Detail > , 'target' | 'currentTarget' > {
36 target : EventTarget ;
Original file line number Diff line number Diff line change @@ -12,6 +12,9 @@ type ChangeInfo = {
1212
1313type InvalidationInfo = ChangeInfo & { target : Ui5DomRef } ;
1414
15+ /**
16+ * ⚠️ __INTERNAL__ use only! This interface is not part of the public API.
17+ */
1518export interface Ui5DomRef extends Omit < HTMLElement , 'focus' > {
1619 /**
1720 * Called every time before the component renders.
You can’t perform that action at this time.
0 commit comments