diff options
author | Tyler Schicke <tyler_schicke@brown.edu> | 2019-05-16 18:32:57 -0400 |
---|---|---|
committer | Tyler Schicke <tyler_schicke@brown.edu> | 2019-05-16 18:32:57 -0400 |
commit | b29a0d1cef60b55f609fcd94ad38232ae557e681 (patch) | |
tree | 3b2cf48d0ac27582da8603ca7f614b68f874ab0c /src/new_fields/CursorField.ts | |
parent | 179200777d8d283509bc81ea1318c1f51c2251ce (diff) |
Fixed linter errors
Diffstat (limited to 'src/new_fields/CursorField.ts')
-rw-r--r-- | src/new_fields/CursorField.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/new_fields/CursorField.ts b/src/new_fields/CursorField.ts index 7fd326a5f..fc144222c 100644 --- a/src/new_fields/CursorField.ts +++ b/src/new_fields/CursorField.ts @@ -6,17 +6,17 @@ import { serializable, createSimpleSchema, object } from "serializr"; export type CursorPosition = { x: number, y: number -} +}; export type CursorMetadata = { id: string, identifier: string -} +}; export type CursorData = { metadata: CursorMetadata, position: CursorPosition -} +}; const PositionSchema = createSimpleSchema({ x: true, |