aboutsummaryrefslogtreecommitdiff
path: root/src/client/documents/Documents.ts
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2024-05-19 02:37:08 -0400
committerbobzel <zzzman@gmail.com>2024-05-19 02:37:08 -0400
commitac4dbfff647c5ce6e98c6a8f8726f6674e45be7d (patch)
treec47b58c347deda615581eb44bed955396f30f31f /src/client/documents/Documents.ts
parent33f51c59f5f75ff7e19eb3f47184685668596f8b (diff)
parent2ab3fd16d01863300bcdb1cf076b6f5c81daf867 (diff)
Merge branch 'eleanor-starter' into restoringEslint
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 689439432..e16e0e834 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';
@@ -836,6 +851,7 @@ export namespace Docs {
points: PointData[],
options: DocumentOptions = {},
strokeWidth = ActiveInkWidth(),
+ eraserWidth = ActiveEraserWidth(),
color = ActiveInkColor(),
strokeBezier = ActiveInkBezierApprox(),
fillColor = ActiveFillColor(),