Defines an interaction flow inside penpot. A flow is defined by a starting board for an interaction.

interface Flow {
    page: Page;
    name: string;
    startingBoard: Board;
    remove(): void;
}

Properties

Methods

Properties

page: Page

The page in which the flow is defined

name: string

The name for the current flow

startingBoard: Board

The starting board for this interaction flow

Methods

  • Remvoes the flow from the page

    Returns void