@yuntijs/ui
Version:
☁️ Yunti UI - an open-source UI component library for building Cloud Native web apps
11 lines (10 loc) • 495 B
TypeScript
import React from 'react';
import { DivProps } from 'react-layout-kit';
import type { LazyLogProps } from './types';
export interface LogViewerProps extends Omit<LazyLogProps, 'iconFilterLines' | 'iconFindNext' | 'iconFindPrevious' | 'loadingComponent'>, Pick<DivProps, 'className' | 'id' | 'style'> {
/**
* Timed refresh, in ms, only takes effect when url is specified and not websocket
*/
refreshInterval?: number;
}
export declare const LogViewer: React.FC<LogViewerProps>;