diff options
author | bobzel <zzzman@gmail.com> | 2024-05-19 02:37:08 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2024-05-19 02:37:08 -0400 |
commit | ac4dbfff647c5ce6e98c6a8f8726f6674e45be7d (patch) | |
tree | c47b58c347deda615581eb44bed955396f30f31f /src/client/documents/Documents.ts | |
parent | 33f51c59f5f75ff7e19eb3f47184685668596f8b (diff) | |
parent | 2ab3fd16d01863300bcdb1cf076b6f5c81daf867 (diff) |
Merge branch 'eleanor-starter' into restoringEslint
Diffstat (limited to 'src/client/documents/Documents.ts')
-rw-r--r-- | src/client/documents/Documents.ts | 18 |
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(), |