From d341eb3fbea57608fed584d3b5abc631dcff0f0e Mon Sep 17 00:00:00 2001 From: Jordi Sala Morales Date: Wed, 10 Apr 2024 10:56:14 +0000 Subject: [PATCH] fix --- src/ui/lib/penpot.d.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/ui/lib/penpot.d.ts b/src/ui/lib/penpot.d.ts index 8ab52a3..f15fef2 100644 --- a/src/ui/lib/penpot.d.ts +++ b/src/ui/lib/penpot.d.ts @@ -1,20 +1,23 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ import { CircleShape } from './types/circle/circleShape'; import { RectShape } from './types/rect/rectShape'; import { TextShape } from './types/text/textShape'; export interface PenpotFile { + // eslint-disable-next-line @typescript-eslint/no-explicit-any asMap(): any; export(): void; addPage(name: string, options?: object): void; closePage(): void; + // eslint-disable-next-line @typescript-eslint/no-explicit-any addArtboard(artboard: any): void; closeArtboard(): void; + // eslint-disable-next-line @typescript-eslint/no-explicit-any addGroup(group: any): void; closeGroup(): void; createRect(rect: RectShape): void; createCircle(circle: CircleShape): void; createText(options: TextShape): void; + // eslint-disable-next-line @typescript-eslint/no-explicit-any createImage(image: any): void; }