10 lines
194 B
TypeScript
10 lines
194 B
TypeScript
export type Position = {
|
|
/**
|
|
* The vertical position.
|
|
*/
|
|
vertical?: 'top' | 'middle' | 'bottom';
|
|
/**
|
|
* The horizontal position.
|
|
*/
|
|
horizontal?: 'start' | 'center' | 'end';
|
|
}; |