chore: remove unused type

This commit is contained in:
Mar0xy 2023-11-21 22:23:55 +01:00
parent 3f86903cae
commit cb9cbc8f15
No known key found for this signature in database
GPG key ID: 56569BBE47D2C828

View file

@ -29,8 +29,7 @@ type Q =
{ op: 'is not null', k: K} |
{ op: 'and', qs: Q[] } |
{ op: 'or', qs: Q[] } |
{ op: 'not', q: Q } |
{ op: 'in', qs: Q[] };
{ op: 'not', q: Q };
function compileValue(value: V): string {
if (typeof value === 'string') {