3 lines
211 B
TypeScript
3 lines
211 B
TypeScript
const SIDE = ['auto', 'top', 'bottom', 'left', 'right'] as const
|
|
const ALIGN = ['start', 'end'] as const
|
|
export type PopoverPlacement = `${typeof SIDE[number]}` | `${typeof SIDE[number]}-${typeof ALIGN[number]}` |