position.enum.d.ts 459 B

1234567891011121314151617
  1. /**
  2. * Used for some components to determine positioning of various elements
  3. */
  4. export declare enum PositionEnum {
  5. /** left horizontal position */
  6. LEFT = "left",
  7. /** right horizontal position */
  8. RIGHT = "right",
  9. /** center horizontal position */
  10. CENTER = "center",
  11. /** top vertical position */
  12. TOP = "top",
  13. /** bottom vertical position */
  14. BOTTOM = "bottom",
  15. /** middle vertical position */
  16. MIDDLE = "middle"
  17. }