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 Co-authored-by: Eric NGUYEN <enguyen@techform.fr> Reviewed-on: https://git.siklos-chaneru.duckdns.org/Siklos/svg-layout-designer-react/pulls/26
12 lines
310 B
TypeScript
12 lines
310 B
TypeScript
import { XPositionReference } from '../Enums/XPositionReference';
|
|
import { IImage } from './IImage';
|
|
|
|
/**
|
|
* Model of available symbol to configure the application */
|
|
export interface IAvailableSymbol {
|
|
Name: string
|
|
XPositionReference: XPositionReference
|
|
Image: IImage
|
|
Width: number
|
|
Height: number
|
|
}
|