The FigmaElement interface is for elements that have an added description, but are otherwise unaltered from how they appear from Figma's API.

interface FigmaElement {
    children?: FRAME[];
    description?: string;
    id: string;
    name: string;
    type: string;
}

Hierarchy

Properties

children?: FRAME[]
description?: string
id: string
name: string
type: string

Generated using TypeDoc