dropit-figma
Version:
DropIT: A seamless design-to-code solution that integrates with the Figma API to fetch and structure design data, including pages, screens, styles, and images, for streamlined development workflows.
21 lines (20 loc) • 367 B
text/typescript
export interface App {
name: string;
screens: Screen[];
}
export interface Screen{
name: string;
styles: Style[];
images: Image[];
}
export interface Style {
name: string;
styleType: 'FILL' | 'TEXT' | 'EFFECT';
remote: boolean;
description: string;
details: any;
}
export interface Image {
name: string;
url: string;
}