@sequeljs/ast
Version:
A SQL AST manager for JavaScript
7 lines • 312 B
TypeScript
import type SQLLiteral from '../nodes/SQLLiteral';
import type Visitable from '../visitors/Visitable';
export default interface TypeCaster {
isAbleToTypeCast(): boolean;
typeCastForDatabase(attributeName: string | SQLLiteral, value: Visitable): number | string;
}
//# sourceMappingURL=TypeCaster.d.ts.map