UNPKG

@easyquery/core

Version:

EasyQuery.JS core modules

21 lines (20 loc) 478 B
import { DataKind } from "../../types/data_kind"; import { DataType } from "../../types/data_type"; export interface OperatorData { id: string; cptn: string; caseIns: boolean; isRange: boolean; fmt: string; pcnt: number; defOperand?: OperandData; editor?: string; operands?: OperandData[]; } export interface OperandData { kind: DataKind; dtype: DataType; val: string; txt?: string; editor?: string; }