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.

9 lines (8 loc) 322 B
import type { RunStatus, SessionStatus } from "airplane/api"; export declare const isStatusTerminal: (status?: RunStatus | SessionStatus) => boolean; interface GenericExecuteError { message: string; statusCode: number; } export declare const isGenericExecuteError: (x: any) => x is GenericExecuteError; export {};