@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) • 701 B
TypeScript
import * as React from "react";
export declare const executeTaskSuccess: (opts?: {
expectedParamValues?: Record<string, unknown>;
runID?: string;
output?: any;
}) => void;
export declare const executeRunbookSuccess: (opts?: {
expectedParamValues?: Record<string, unknown>;
}) => void;
export declare const executeTaskFail: () => void;
export declare const executeRunbookFail: () => void;
export declare const QueryProvider: ({ children }: {
children?: React.ReactNode;
}) => import("react/jsx-runtime").JSX.Element;
export declare const renderQueryHook: <TProps, TResult>(callback: (props: TProps) => TResult) => import("@testing-library/react").RenderHookResult<TResult, TProps>;