mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-21 17:36:37 +00:00
10 lines
188 B
TypeScript
10 lines
188 B
TypeScript
|
|
import { OptionsQuery } from './types';
|
||
|
|
|
||
|
|
export const URL_OPTIONS = 'options';
|
||
|
|
|
||
|
|
export const defaultOptionsQuery: OptionsQuery = {
|
||
|
|
selectColumns: [],
|
||
|
|
maxLines: 0,
|
||
|
|
format: 'default',
|
||
|
|
};
|