Files
Jack Westbrook 2bcc46c338 Frontend: Enable TS IsolatedModules (#95586)
* chore(typescript): enable isolatedModules

* chore(frontend): fix ts errors related to isolated modules
2024-10-31 14:00:32 +01:00

25 lines
815 B
TypeScript

import {
QueryEditorOperatorExpression as QueryEditorOperatorExpressionBase,
QueryEditorOperator as QueryEditorOperatorBase,
QueryEditorOperatorValueType,
} from './dataquery.gen';
export {
QueryEditorPropertyType,
type QueryEditorProperty,
type QueryEditorPropertyExpression,
type QueryEditorGroupByExpression,
type QueryEditorFunctionExpression,
type QueryEditorFunctionParameterExpression,
type QueryEditorArrayExpression,
QueryEditorExpressionType,
type QueryEditorExpression,
} from './dataquery.gen';
export interface QueryEditorOperator<T extends QueryEditorOperatorValueType> extends QueryEditorOperatorBase {
value?: T;
}
export interface QueryEditorOperatorExpression extends QueryEditorOperatorExpressionBase {
operator: QueryEditorOperator<QueryEditorOperatorValueType>;
}