mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-05-03 10:00:07 -04:00
parent
5252726307
commit
61e5b66dac
23 changed files with 964 additions and 86 deletions
|
@ -5,6 +5,7 @@ import {
|
|||
NonDeleted,
|
||||
TextAlign,
|
||||
ExcalidrawElement,
|
||||
GroupId,
|
||||
} from "./element/types";
|
||||
import { SHAPES } from "./shapes";
|
||||
import { Point as RoughPoint } from "roughjs/bin/geometry";
|
||||
|
@ -67,6 +68,10 @@ export type AppState = {
|
|||
shouldCacheIgnoreZoom: boolean;
|
||||
showShortcutsDialog: boolean;
|
||||
zenModeEnabled: boolean;
|
||||
|
||||
// groups
|
||||
selectedGroupIds: { [groupId: string]: boolean };
|
||||
editingGroupId: GroupId | null;
|
||||
};
|
||||
|
||||
export type PointerCoords = Readonly<{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue