CipherStashDocs
StackLatestPackagesStackSrcTypes publicType aliases

EncryptedQueryResult

Result of encryptQuery (single or batch). `eql` return type yields either a storage payload (`Encrypted`) or a query-only term (`EncryptedQuery`); the `compo...

@cipherstash/stack


Type Alias: EncryptedQueryResult

type EncryptedQueryResult = 
  | Encrypted
  | EncryptedQuery
  | string
  | null;

Defined in: packages/stack/src/types.ts:142

Result of encryptQuery (single or batch). eql return type yields either a storage payload (Encrypted) or a query-only term (EncryptedQuery); the composite-literal return types yield a string.

On this page