D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
usr
/
share
/
grafana
/
public
/
app
/
plugins
/
datasource
/
cloudwatch
/
Filename :
expressions.ts
back
Copy
import { QueryEditorOperatorExpression as QueryEditorOperatorExpressionBase, QueryEditorOperator as QueryEditorOperatorBase, QueryEditorOperatorValueType, } from './dataquery.gen'; export { QueryEditorPropertyType, QueryEditorProperty, QueryEditorPropertyExpression, QueryEditorGroupByExpression, QueryEditorFunctionExpression, QueryEditorFunctionParameterExpression, QueryEditorArrayExpression, QueryEditorExpressionType, QueryEditorExpression, } from './dataquery.gen'; export interface QueryEditorOperator<T extends QueryEditorOperatorValueType> extends QueryEditorOperatorBase { value?: T; } export interface QueryEditorOperatorExpression extends QueryEditorOperatorExpressionBase { operator: QueryEditorOperator<QueryEditorOperatorValueType>; }