13 lines
313 B
TypeScript
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
|
|
}
|