UNPKG

@airplane/views

Version:

A React library for building Airplane views. Views components are optimized in style and functionality to produce internal apps that are easy to build and maintain.

11 lines (10 loc) 450 B
import { DefaultParams, ParamValues } from "../../client"; export type RequestRunnableDialogProps<TParams> = { opened: boolean; onSubmit: () => void; onClose: () => void; taskSlug?: string; runbookSlug?: string; paramValues: TParams; }; export declare function RequestRunnableDialog<TParams extends ParamValues | undefined = DefaultParams>(props: RequestRunnableDialogProps<TParams>): import("react/jsx-runtime").JSX.Element;