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