Skip to content

Commit

Permalink
Fix type (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
Antony1060 authored Aug 12, 2022
1 parent f60a445 commit 7b36633
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/QueryBuilder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ export type ColumnTupleType = {
export type ColumnType =
| AdvancedColumnType
| {
type: Omit<CassandraTypes, 'map' | 'set' | 'list'>;
type: Omit<CassandraTypes, ComplexTypes>;
};

export type ComplexTypes = 'map' | 'set' | 'list' | 'tuple';
Expand Down

0 comments on commit 7b36633

Please sign in to comment.