Skip to content

Commit

Permalink
export Result Definition types
Browse files Browse the repository at this point in the history
  • Loading branch information
Derek Wiers committed Apr 26, 2021
1 parent dfd6846 commit ddfb3b2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/query/endpointDefinitions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export enum DefinitionType {
mutation = 'mutation',
}

type GetResultDescriptionFn<
export type GetResultDescriptionFn<
TagTypes extends string,
ResultType,
QueryArg,
Expand All @@ -95,8 +95,8 @@ export type FullTagDescription<TagType> = {
type: TagType
id?: number | string
}
type TagDescription<TagType> = TagType | FullTagDescription<TagType>
type ResultDescription<
export type TagDescription<TagType> = TagType | FullTagDescription<TagType>
export type ResultDescription<
TagTypes extends string,
ResultType,
QueryArg,
Expand Down

0 comments on commit ddfb3b2

Please sign in to comment.