index.ts 503 B

123456789101112131415161718192021222324
  1. export { isOverScrollBars } from "./scrollbars";
  2. export {
  3. clearSelection,
  4. getSelectedIndices,
  5. deleteSelectedElements,
  6. someElementIsSelected,
  7. setSelection,
  8. getSelectedAttribute
  9. } from "./selection";
  10. export {
  11. exportAsPNG,
  12. loadFromJSON,
  13. saveAsJSON,
  14. restoreFromLocalStorage,
  15. saveToLocalStorage
  16. } from "./data";
  17. export {
  18. hasBackground,
  19. hasStroke,
  20. getElementAtPosition,
  21. getElementContainingPosition,
  22. hasText
  23. } from "./comparisons";
  24. export { createScene } from "./createScene";