Skip to content
Snippets Groups Projects
Commit e79ea606 authored by rhenck's avatar rhenck
Browse files

Fix interface (inheritance)

parent 7f3cfc9c
No related branches found
No related tags found
No related merge requests found
...@@ -39,7 +39,7 @@ export interface PositionedElement extends UIElement { ...@@ -39,7 +39,7 @@ export interface PositionedElement extends UIElement {
positionProps: PositionProperties; positionProps: PositionProperties;
} }
export interface PlayerElement { export interface PlayerElement extends UIElement {
playerProps: PlayerProperties; playerProps: PlayerProperties;
} }
...@@ -229,7 +229,7 @@ export interface RadioButtonGroupElement extends InputElement { ...@@ -229,7 +229,7 @@ export interface RadioButtonGroupElement extends InputElement {
} }
export interface RadioButtonGroupComplexElement extends InputElement { export interface RadioButtonGroupComplexElement extends InputElement {
type: 'radio-group-images' type: 'radio-group-images' // TODO better name
columns: LikertColumn[]; columns: LikertColumn[];
positionProps: PositionProperties; positionProps: PositionProperties;
styles: BasicStyles; styles: BasicStyles;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment