fix: Don't share collab types with core (#3353)

* fix: Don't share collab types with core

* fix

* remove

* fix
This commit is contained in:
Aakansha Doshi
2021-03-28 19:26:03 +05:30
committed by GitHub
parent 3d047d57a7
commit 25fd275158
9 changed files with 27 additions and 18 deletions

View File

@ -20,7 +20,6 @@ import { ExcalidrawImperativeAPI } from "./components/App";
import type { ResolvablePromise } from "./utils";
import { Spreadsheet } from "./charts";
import { Language } from "./i18n";
import { UserIdleState } from "./excalidraw-app/collab/types";
export type Point = Readonly<RoughPoint>;
@ -196,3 +195,9 @@ export type SceneData = {
collaborators?: Map<string, Collaborator>;
commitToHistory?: boolean;
};
export enum UserIdleState {
ACTIVE = "active",
AWAY = "away",
IDLE = "idle",
}