diff options
author | bobzel <zzzman@gmail.com> | 2024-05-24 11:27:56 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2024-05-24 11:27:56 -0400 |
commit | a7f5bd1c2438f95252f5515d7226b491dfb5183b (patch) | |
tree | 9b2158281d232735846236117576a34364e20d81 /src/client/documents/Documents.ts | |
parent | 9caef373ab0563d4008488fabefa644360d2ecd9 (diff) |
lint fixes
Diffstat (limited to 'src/client/documents/Documents.ts')
-rw-r--r-- | src/client/documents/Documents.ts | 20 |
1 files changed, 2 insertions, 18 deletions
diff --git a/src/client/documents/Documents.ts b/src/client/documents/Documents.ts index 640fb251d..a67e6b4f6 100644 --- a/src/client/documents/Documents.ts +++ b/src/client/documents/Documents.ts @@ -5,22 +5,7 @@ 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, - ActiveEraserWidth, - ActiveInkWidth, - ActiveIsInkMask, - CreateLinkToActiveAudio, - Doc, - FieldType, - Opt, - updateCachedAcls, -} from '../../fields/Doc'; +import { ActiveArrowEnd, ActiveArrowStart, ActiveDash, ActiveFillColor, ActiveInkBezierApprox, ActiveInkColor, 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'; @@ -852,7 +837,6 @@ export namespace Docs { points: PointData[], options: DocumentOptions = {}, strokeWidth = ActiveInkWidth(), - eraserWidth = ActiveEraserWidth(), color = ActiveInkColor(), strokeBezier = ActiveInkBezierApprox(), fillColor = ActiveFillColor(), @@ -963,7 +947,7 @@ export namespace Docs { return InstanceFromProto(Prototypes.get(DocumentType.COL), new List(documents), { ...options, _type_collection: CollectionViewType.Carousel3D }); } - export function CardDeckDocument(documents: Array<Doc>, options: DocumentOptions, id?: string) { + export function CardDeckDocument(documents: Array<Doc>, options: DocumentOptions) { return InstanceFromProto(Prototypes.get(DocumentType.COL), new List(documents), { ...options, _type_collection: CollectionViewType.Card }); } |