Skip to content

Commit

Permalink
remove unused function (duplicated elsewhere)
Browse files Browse the repository at this point in the history
  • Loading branch information
Pascal-Delange committed Jan 3, 2025
1 parent ab5096d commit f2b6783
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 150 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import {
} from '@app-builder/models/astNode/data-accessor';
import { type CustomList } from '@app-builder/models/custom-list';
import { type RuleExecution } from '@app-builder/models/decision';
import { type OperatorFunction } from '@app-builder/models/operator-functions';
import { type NodeEvaluation } from '@app-builder/models/node-evaluation';
import { type OperatorFunction } from '@app-builder/models/operator-functions';
import { type ScenarioIterationRule } from '@app-builder/models/scenario-iteration-rule';
import { useAstNodeEditor } from '@app-builder/services/editor/ast-editor';
import {
Expand Down

This file was deleted.

1 change: 1 addition & 0 deletions packages/app-builder/src/models/operator-functions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ export type OperatorFunction =
| TimeAddOperator
| ValidTimestampExtractParts
| AggregatorOperator;

export function isOperatorFunction(value: string): value is OperatorFunction {
return (
isMainAstOperatorFunction(value) ||
Expand Down

0 comments on commit f2b6783

Please sign in to comment.