svg-layout-designer-react/src/Interfaces/IAvailableContainer.ts
Siklos c81a6fe44b
All checks were successful
continuous-integration/drone/push Build is passing
Implement events for external use + Rename interfaces with a I prefix + add some documentation (#26)
Implement events for external use
Rename interfaces with a I prefix
Add some documentation

Co-authored-by: Eric NGUYEN <enguyen@techform.fr>
Reviewed-on: https://git.siklos-chaneru.duckdns.org/Siklos/svg-layout-designer-react/pulls/26
2022-08-12 06:36:14 -04:00

11 lines
324 B
TypeScript

import React from 'react';
import { XPositionReference } from '../Enums/XPositionReference';
/** Model of available container used in application configuration */
export interface IAvailableContainer {
Type: string
Width: number
Height: number
XPositionReference?: XPositionReference
Style: React.CSSProperties
}