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.

16 lines (15 loc) 503 B
import * as React from "react"; import { DefaultParams } from "../../client"; type RequestDialogContextType = { setState: (state: { params: DefaultParams; taskSlug?: string; runbookSlug?: string; opened: boolean; }) => void; }; export declare const RequestDialogContext: React.Context<RequestDialogContextType>; export declare const RequestDialogProvider: ({ children, }: { children: React.ReactNode; }) => import("react/jsx-runtime").JSX.Element; export {};