diff options
author | Tyler Schicke <tyler_schicke@brown.edu> | 2019-04-24 21:36:46 -0400 |
---|---|---|
committer | Tyler Schicke <tyler_schicke@brown.edu> | 2019-04-24 21:36:46 -0400 |
commit | a4e2e38fbe60d48fe1d211aec9b4e6bd99c815c1 (patch) | |
tree | b904f7891d490500ebcf86584f2fc973212a6425 /src/client/views/nodes/DocumentView.tsx | |
parent | 8ae00e0bc28b9bf2d310a148f27d2088df01e502 (diff) |
DocumentDecorations
Diffstat (limited to 'src/client/views/nodes/DocumentView.tsx')
-rw-r--r-- | src/client/views/nodes/DocumentView.tsx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/client/views/nodes/DocumentView.tsx b/src/client/views/nodes/DocumentView.tsx index e00f56d53..ce338e9a7 100644 --- a/src/client/views/nodes/DocumentView.tsx +++ b/src/client/views/nodes/DocumentView.tsx @@ -66,6 +66,9 @@ export const positionSchema = createSchema({ y: "number", }); +export type PositionDocument = makeInterface<[typeof positionSchema]>; +export const PositionDocument = makeInterface(positionSchema); + type Document = makeInterface<[typeof schema]>; const Document = makeInterface(schema); |