@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.
27 lines (26 loc) • 538 B
TypeScript
export declare const mockRunData: (runID: string, outputFn: () => any) => ({
url: string;
method: string;
status: number;
response: {
runID: string;
id?: undefined;
status?: undefined;
taskID?: undefined;
};
} | {
url: string;
method: string;
status: number;
response: {
id: string;
status: string;
taskID: string;
runID?: undefined;
};
} | {
url: string;
method: string;
status: number;
response: () => string;
})[];