Interface LibrarySummary

Represents a summary of a Penpot library. This interface provides properties for summarizing various aspects of a Penpot library.

interface LibrarySummary {
    id: string;
    name: string;
    numColors: number;
    numComponents: number;
    numTypographies: number;
}

Properties

id: string

The unique identifier of the library.

name: string

The name of the library.

numColors: number

The number of colors in the library.

numComponents: number

The number of components in the library.

numTypographies: number

The number of typographies in the library.