From 80c9e29de25f9d8d733d908c6eba807c00e8f203 Mon Sep 17 00:00:00 2001 From: Andrey Chalkin Date: Wed, 4 Sep 2019 22:17:40 +0700 Subject: [PATCH] fix: added missed ShapeGroup static method (#50) --- models/ShapeGroup/index.d.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/models/ShapeGroup/index.d.ts b/models/ShapeGroup/index.d.ts index 047b270..6d568b6 100644 --- a/models/ShapeGroup/index.d.ts +++ b/models/ShapeGroup/index.d.ts @@ -5,6 +5,8 @@ declare class ShapeGroup extends Layer { static Oval(args: any): ShapeGroup; + static ShapePath(args: any): ShapeGroup; + _class: 'shapeGroup'; layerListExpandedType: number; clippingMaskMode: number; @@ -12,4 +14,6 @@ declare class ShapeGroup extends Layer { windingRule: number; constructor(args?: any, json?: any); -} \ No newline at end of file +} + +export = ShapeGroup;