Skip to content

Commit

Permalink
refactor(log-shared): update exports
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco Antonio Ghiani committed Dec 21, 2023
1 parent 389d095 commit 0a0f7bb
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ import {
import { euiStyled } from '@kbn/kibana-react-plugin/common';
import { LogEntryColumnContent } from './log_entry_column';

interface LogEntryContextMenuItem {
export interface LogEntryContextMenuItem {
label: string;
onClick: (e: React.MouseEvent) => void;
href?: string;
}

interface LogEntryContextMenuProps {
export interface LogEntryContextMenuProps {
'aria-label'?: string;
isOpen: boolean;
onOpen: () => void;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import {
WrapMode,
} from './text_styles';

interface LogEntryFieldColumnProps {
export interface LogEntryFieldColumnProps {
columnValue: LogColumn;
highlights: LogColumn[];
isActiveHighlight: boolean;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import {
WrapMode,
} from './text_styles';

interface LogEntryMessageColumnProps {
export interface LogEntryMessageColumnProps {
columnValue: LogColumn;
highlights: LogColumn[];
isActiveHighlight: boolean;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { euiStyled } from '@kbn/kibana-react-plugin/common';
import { TimeFormat, useFormattedTime } from '../../formatted_time';
import { LogEntryColumnContent } from './log_entry_column';

interface LogEntryTimestampColumnProps {
export interface LogEntryTimestampColumnProps {
format?: TimeFormat;
time: string;
render?: (time: string) => React.ReactNode;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import { LogDateRow } from './log_date_row';
import { LogEntry } from '../../../../common/log_entry';
import { LogColumnRenderConfiguration } from '../../../utils/log_column_render_configuration';

interface ScrollableLogTextStreamViewProps {
export interface ScrollableLogTextStreamViewProps {
columnConfigurations: LogColumnRenderConfiguration[];
items: StreamItem[];
scale: TextScale;
Expand Down

0 comments on commit 0a0f7bb

Please sign in to comment.