svg-layout-designer-react/src/Enums/AddMethod.ts

13 lines
313 B
TypeScript

/**
* Add method when creating a container
* - Append will append to the last children in list
* - Insert will always place it at the begining
* - Replace will remove the selected container and insert a new one
* (default: Append)
*/
export enum AddMethod {
Append,
Insert,
Replace,
ReplaceParent
}