Penpot plugins API
    Preparing search index...

    Interface Flow

    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;
    }
    Index

    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

    • Removes the flow from the page

      Returns void