From e004560304c8b71d4e2b5e718b72a436fef4412e Mon Sep 17 00:00:00 2001 From: Wassim Chegham <1699357+manekinekko@users.noreply.github.com> Date: Mon, 10 Feb 2020 18:08:09 +0100 Subject: [PATCH] add optional types (#42211) --- types/sketchapp/index.d.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/types/sketchapp/index.d.ts b/types/sketchapp/index.d.ts index adc911ae93..b03bfff200 100644 --- a/types/sketchapp/index.d.ts +++ b/types/sketchapp/index.d.ts @@ -197,6 +197,9 @@ interface SketchMSAttributedString { _class: 'attributedString'; string: string; attributes: SketchMSStringAttribute[]; + archivedAttributedString?: { + _archive: string; + }; } interface SketchMSTextLayer extends SketchMSContainerLayer { _class: 'text'; @@ -336,6 +339,10 @@ interface SketchMSLayer { clippingMaskMode: SketchMSLayerClippingMaskMode; hasClippingMask: boolean; style: SketchMSStyle; + layers?: SketchMSLayer[]; + + // xLayers custom property + css?: string; } interface SketchMSSharedStyle { _class: 'sharedStyle';