Type Alias DQLQueryArgumentValue

DQLQueryArgumentValue:
    | string
    | number
    | boolean
    | Uint8Array
    | null
    | Attachment
    | DocumentID
    | DQLQueryArgumentValue[]
    | {
        [key: string]: DQLQueryArgumentValue;
    }

Individual value in a DQLQueryArguments object.