UNPKG

@sequeljs/ast

Version:

A SQL AST manager for JavaScript

12 lines 447 B
import NodeExpression from './NodeExpression'; import type Attribute from '../attributes/Attribute'; import type AliasPredication from '../mixins/AliasPredication'; declare class Casted extends NodeExpression { readonly attribute: string | Attribute; readonly value: any; constructor(value: any, attribute: string | Attribute); } interface Casted extends AliasPredication { } export default Casted; //# sourceMappingURL=Casted.d.ts.map