setMenu

setMenu

Set the plugin's menu, which is shown in the plugin window header.

await framer.setMenu([
    {
        label: "New",
        onAction: newFile,
    },
    {
        type: "separator",
    },
    {
        label: "Log Out",
        onAction: logOut,
    },
])

Parameters

Returns

  • Promise<void>