0
Fork 0
mirror of https://github.com/penpot/penpot-exporter-figma-plugin.git synced 2024-12-22 05:33:02 -05:00

Fix types (#107)

This commit is contained in:
Jordi Sala Morales 2024-05-13 14:04:33 +02:00 committed by GitHub
parent 54df5ead1e
commit 538c076374
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -6,20 +6,21 @@ import { GroupShape } from '@ui/lib/types/shapes/groupShape';
import { PathShape } from '@ui/lib/types/shapes/pathShape';
import { RectShape } from '@ui/lib/types/shapes/rectShape';
import { TextShape } from '@ui/lib/types/shapes/textShape';
import { Uuid } from '@ui/lib/types/utils/uuid';
export interface PenpotFile {
addPage(name: string, options?: PenpotPageOptions): void;
addPage(name: string, options?: PenpotPageOptions): Uuid;
closePage(): void;
addArtboard(artboard: FrameShape): void;
addArtboard(artboard: FrameShape): Uuid;
closeArtboard(): void;
addGroup(group: GroupShape): void;
addGroup(group: GroupShape): Uuid;
closeGroup(): void;
addBool(bool: BoolShape): void;
addBool(bool: BoolShape): Uuid;
closeBool(): void;
createRect(rect: RectShape): void;
createCircle(circle: CircleShape): void;
createPath(path: PathShape): void;
createText(options: TextShape): void;
createRect(rect: RectShape): Uuid;
createCircle(circle: CircleShape): Uuid;
createPath(path: PathShape): Uuid;
createText(options: TextShape): Uuid;
// addLibraryColor(color: any): void;
// updateLibraryColor(color: any): void;
// deleteLibraryColor(color: any): void;