7 lines
104 B
TypeScript
7 lines
104 B
TypeScript
export const enum Placement {
|
|
top = 'top',
|
|
bottom = 'bottom',
|
|
left = 'left',
|
|
right = 'right',
|
|
}
|