climb-onyx-gui
Version:
Onyx Graphical User Interface
20 lines (19 loc) • 1.56 kB
TypeScript
import { CustomCellRendererProps } from '@ag-grid-community/react';
import { OnyxProps } from '../interfaces';
import { ObjectType } from '../types';
interface ErrorModalProps extends OnyxProps {
handleErrorModalShow: (error: Error) => void;
}
interface IDModalProps {
handleObjectShow: (objectType: ObjectType, ID: string) => void;
}
export declare function RecordIDCellRendererFactory(props: IDModalProps): (cellRendererProps: CustomCellRendererProps) => import("react/jsx-runtime").JSX.Element;
export declare function AnalysisIDCellRendererFactory(props: IDModalProps): (cellRendererProps: CustomCellRendererProps) => import("react/jsx-runtime").JSX.Element;
export declare function S3ReportCellRendererFactory(props: ErrorModalProps): (cellRendererProps: CustomCellRendererProps) => import("react/jsx-runtime").JSX.Element;
export declare function TimestampCellRenderer(props: CustomCellRendererProps): import("react/jsx-runtime").JSX.Element;
export declare function ActionCellRenderer(props: CustomCellRendererProps): import("react/jsx-runtime").JSX.Element;
export declare function ChangeCellRenderer(props: CustomCellRendererProps): import("react/jsx-runtime").JSX.Element;
export declare function HTTPStatusCellRenderer(props: CustomCellRendererProps): import("react/jsx-runtime").JSX.Element;
export declare function HTTPMethodCellRenderer(props: CustomCellRendererProps): import("react/jsx-runtime").JSX.Element;
export declare function JSONCellRenderer(props: CustomCellRendererProps): import("react/jsx-runtime").JSX.Element;
export {};