Skip to content

Commit

Permalink
export missing graph types
Browse files Browse the repository at this point in the history
  • Loading branch information
gkorland committed Nov 20, 2023
1 parent 0ee3278 commit 9ed9cb5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/graph/lib/graph.ts
Expand Up @@ -126,11 +126,11 @@ type GraphValue = null | string | number | boolean | Array<GraphValue> | {
longitude: string;
};

type GraphReply<T> = Omit<QueryReply, 'headers' | 'data'> & {
export type GraphReply<T> = Omit<QueryReply, 'headers' | 'data'> & {
data?: Array<T>;
};

type GraphClientType = RedisClientType<{
export type GraphClientType = RedisClientType<{
graph: {
query: typeof import('./commands/QUERY'),
roQuery: typeof import('./commands/RO_QUERY')
Expand Down

0 comments on commit 9ed9cb5

Please sign in to comment.