arrow-store
Version:
TypeScript DynamoDB ORM
10 lines (9 loc) • 462 B
TypeScript
import { COMPARE_OPERATOR_TYPE } from "../types";
declare type TokenType = 'GroupStart' | 'GroupEnd' | 'LambdaInitializer' | 'CommaSeparator' | 'Object' | 'Inverse' | 'Assign' | "MathOperator" | 'ConstantValue' | 'NullValue' | 'Undefined' | 'OR' | 'AND' | 'Terminator';
export declare type TOKEN_TYPE = TokenType | COMPARE_OPERATOR_TYPE;
export declare type QueryToken = {
tokenType: TOKEN_TYPE;
index: number;
length: number;
};
export {};