mirror of
https://github.com/SigNoz/signoz.git
synced 2026-04-30 23:50:27 +01:00
* fix: [FE-3128]: Logs Explorer: Show options based on format type selected * fix: build is fixed --------- Co-authored-by: Palash Gupta <palashgdev@gmail.com>
9 lines
229 B
TypeScript
9 lines
229 B
TypeScript
import { OptionsMenuConfig } from 'container/OptionsMenu/types';
|
|
|
|
export type ExplorerControlPanelProps = {
|
|
selectedOptionFormat: string;
|
|
isShowPageSize: boolean;
|
|
isLoading: boolean;
|
|
optionsMenuConfig?: OptionsMenuConfig;
|
|
};
|