@sequeljs/ast
Version:
A SQL AST manager for JavaScript
13 lines (10 loc) • 336 B
text/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