@sequeljs/ast
Version:
A SQL AST manager for JavaScript
7 lines • 369 B
TypeScript
import type DeleteStatement from './DeleteStatement';
import type InsertStatement from './InsertStatement';
import type SelectStatement from './SelectStatement';
import type UpdateStatement from './UpdateStatement';
type Statement = DeleteStatement | InsertStatement | SelectStatement | UpdateStatement;
export default Statement;
//# sourceMappingURL=Statement.d.ts.map