Change UserData in IKeyValue[]

This commit is contained in:
Guillaume Tauzin 2022-10-18 14:13:47 +02:00
parent d40cd8cf8e
commit cd620e2c1f
5 changed files with 12 additions and 8 deletions

View file

@ -3,6 +3,7 @@ import { PositionReference } from '../Enums/PositionReference';
import { IMargin } from './IMargin';
import { Orientation } from '../Enums/Orientation';
import { Position } from '../Enums/Position';
import { IKeyValue } from './IKeyValue';
/**
* Properties of a container
@ -122,5 +123,5 @@ export interface IContainerProperties {
* (optional)
* User data that can be used for data storage or custom SVG
*/
userData?: object
userData?: IKeyValue[]
}