aboutsummaryrefslogtreecommitdiff
path: root/src/client/documents/Documents.ts
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2024-05-20 14:03:12 -0400
committerbobzel <zzzman@gmail.com>2024-05-20 14:03:12 -0400
commit4ad0dfca6a48b88a53e3add295d41cd0a223b722 (patch)
tree3651e9dee039eb197840591c5e09ec7d3c1be2f7 /src/client/documents/Documents.ts
parent01eb7a85292122bd0702453923a9a34569bee531 (diff)
parenta5aa41e60dc72881e1aa2f14743b9f00c1160eed (diff)
Merge branch 'restoringEslint' into alyssa-starter
Diffstat (limited to 'src/client/documents/Documents.ts')
-rw-r--r--src/client/documents/Documents.ts18
1 files changed, 17 insertions, 1 deletions
diff --git a/src/client/documents/Documents.ts b/src/client/documents/Documents.ts
index 1f9d4228f..640fb251d 100644
--- a/src/client/documents/Documents.ts
+++ b/src/client/documents/Documents.ts
@@ -5,7 +5,22 @@ import { reaction } from 'mobx';
import { basename } from 'path';
import { ClientUtils, OmitKeys } from '../../ClientUtils';
import { DateField } from '../../fields/DateField';
-import { ActiveArrowEnd, ActiveArrowStart, ActiveDash, ActiveFillColor, ActiveInkBezierApprox, ActiveInkColor, ActiveInkWidth, ActiveIsInkMask, CreateLinkToActiveAudio, Doc, FieldType, Opt, updateCachedAcls } from '../../fields/Doc';
+import {
+ ActiveArrowEnd,
+ ActiveArrowStart,
+ ActiveDash,
+ ActiveFillColor,
+ ActiveInkBezierApprox,
+ ActiveInkColor,
+ ActiveEraserWidth,
+ ActiveInkWidth,
+ ActiveIsInkMask,
+ CreateLinkToActiveAudio,
+ Doc,
+ FieldType,
+ Opt,
+ updateCachedAcls,
+} from '../../fields/Doc';
import { Initializing } from '../../fields/DocSymbols';
import { HtmlField } from '../../fields/HtmlField';
import { InkField } from '../../fields/InkField';
@@ -837,6 +852,7 @@ export namespace Docs {
points: PointData[],
options: DocumentOptions = {},
strokeWidth = ActiveInkWidth(),
+ eraserWidth = ActiveEraserWidth(),
color = ActiveInkColor(),
strokeBezier = ActiveInkBezierApprox(),
fillColor = ActiveFillColor(),