From 9ed9cb5be9454706765b17386a2683f9221c680e Mon Sep 17 00:00:00 2001 From: Guy Korland Date: Mon, 20 Nov 2023 20:42:35 +0200 Subject: [PATCH] export missing graph types --- packages/graph/lib/graph.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/graph/lib/graph.ts b/packages/graph/lib/graph.ts index 5baff1dae2..a95338bd8f 100644 --- a/packages/graph/lib/graph.ts +++ b/packages/graph/lib/graph.ts @@ -126,11 +126,11 @@ type GraphValue = null | string | number | boolean | Array | { longitude: string; }; -type GraphReply = Omit & { +export type GraphReply = Omit & { data?: Array; }; -type GraphClientType = RedisClientType<{ +export type GraphClientType = RedisClientType<{ graph: { query: typeof import('./commands/QUERY'), roQuery: typeof import('./commands/RO_QUERY')