mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-05-03 10:00:07 -04:00
* Add font size and font familly option for selection * Allow copy font style * More clearner method name * Update options size and font-familly
24 lines
503 B
TypeScript
24 lines
503 B
TypeScript
export { isOverScrollBars } from "./scrollbars";
|
|
export {
|
|
clearSelection,
|
|
getSelectedIndices,
|
|
deleteSelectedElements,
|
|
someElementIsSelected,
|
|
setSelection,
|
|
getSelectedAttribute
|
|
} from "./selection";
|
|
export {
|
|
exportAsPNG,
|
|
loadFromJSON,
|
|
saveAsJSON,
|
|
restoreFromLocalStorage,
|
|
saveToLocalStorage
|
|
} from "./data";
|
|
export {
|
|
hasBackground,
|
|
hasStroke,
|
|
getElementAtPosition,
|
|
getElementContainingPosition,
|
|
hasText
|
|
} from "./comparisons";
|
|
export { createScene } from "./createScene";
|