UNPKG

@prismatic-io/embedded

Version:

Embed Prismatic's integration marketplace and workflow designer within your existing application.

20 lines (19 loc) 713 B
import type { Options } from "../types/options"; export type ShowIntegrationsProps = Options & {}; /** * Renders the integrations list screen, where your customer's users can view * and manage integrations they have built with the embedded designer. * * Requires the embedded designer feature to be enabled for the customer. * * @param options - Display options for the integrations list. * * @example * // Show integrations list in a popover * prismatic.showIntegrations({ usePopover: true }); * * @example * // Show integrations list inline * prismatic.showIntegrations({ selector: "#integrations-container" }); */ export declare const showIntegrations: (options: ShowIntegrationsProps) => void;