@prismatic-io/embedded
Version:
Embed Prismatic's integration marketplace and workflow designer within your existing application.
20 lines (19 loc) • 718 B
TypeScript
import type { Options } from "../types/options";
export type ShowConnectionsProps = Options & {};
/**
* Renders the connections management screen, where your customer's users can
* view and manage their reusable credential connections.
*
* @param options - Display options for the connections screen.
*
* @example
* // Show connections in a popover
* prismatic.showConnections({ usePopover: true });
*
* @example
* // Show connections inline
* prismatic.showConnections({ selector: "#connections-container" });
*
* @see {@link https://prismatic.io/docs/embed/additional-screens/show-connections/ | Embedding Connections}
*/
export declare const showConnections: (options: ShowConnectionsProps) => void;