Skip to content

Commit 9ed9cb5

Browse files
authored
export missing graph types
1 parent 0ee3278 commit 9ed9cb5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/graph/lib/graph.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,11 +126,11 @@ type GraphValue = null | string | number | boolean | Array<GraphValue> | {
126126
longitude: string;
127127
};
128128

129-
type GraphReply<T> = Omit<QueryReply, 'headers' | 'data'> & {
129+
export type GraphReply<T> = Omit<QueryReply, 'headers' | 'data'> & {
130130
data?: Array<T>;
131131
};
132132

133-
type GraphClientType = RedisClientType<{
133+
export type GraphClientType = RedisClientType<{
134134
graph: {
135135
query: typeof import('./commands/QUERY'),
136136
roQuery: typeof import('./commands/RO_QUERY')

0 commit comments

Comments
 (0)