You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
184 B

  1. declare namespace Exit {
  2. interface ExitModal {
  3. openModal: () => void
  4. }
  5. interface Axis {
  6. name: string
  7. icon: string
  8. value: 'x' | 'y' | 'z'
  9. color: string
  10. }
  11. }