@piiano/vault-client
Version:
Piiano Vault generated typescript client
15 lines • 392 B
TypeScript
import type { InMap } from './InMap';
import type { LikeMap } from './LikeMap';
import type { MatchMap } from './MatchMap';
/**
* A query is a map of operators to match against the properties of an object.
*
* Multiple operators can be combined in a single query.
*
*/
export type Query = {
in?: InMap;
match?: MatchMap;
like?: LikeMap;
};
//# sourceMappingURL=Query.d.ts.map