We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ee3278 commit 9ed9cb5Copy full SHA for 9ed9cb5
packages/graph/lib/graph.ts
@@ -126,11 +126,11 @@ type GraphValue = null | string | number | boolean | Array<GraphValue> | {
126
longitude: string;
127
};
128
129
-type GraphReply<T> = Omit<QueryReply, 'headers' | 'data'> & {
+export type GraphReply<T> = Omit<QueryReply, 'headers' | 'data'> & {
130
data?: Array<T>;
131
132
133
-type GraphClientType = RedisClientType<{
+export type GraphClientType = RedisClientType<{
134
graph: {
135
query: typeof import('./commands/QUERY'),
136
roQuery: typeof import('./commands/RO_QUERY')
0 commit comments