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

@ -3,8 +3,7 @@ import { restore } from "../../data/restore";
import { ImportedDataState } from "../../data/types";
import { ExcalidrawElement } from "../../element/types";
import { t } from "../../i18n";
import { AppState } from "../../types";
import { UserIdleState } from "../collab/types";
import { AppState, UserIdleState } from "../../types";
const byteToHex = (byte: number): string => `0${byte.toString(16)}`.slice(-2);