Skip to content

Commit

Permalink
Merge pull request #496 from lifeomic/export-type
Browse files Browse the repository at this point in the history
fix: export useActivities types
  • Loading branch information
swain authored Dec 8, 2023
2 parents 57fd8e0 + acf26ff commit 97d6a8b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/hooks/useActivities.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ const getActivitiesQueryDocument = gql`
}
`;

type ActivitiesInput = {
export type ActivitiesInput = {
status?: string;
startDateTime?: string;
endDateTime: string;
Expand Down Expand Up @@ -355,7 +355,7 @@ export type Activity = {
};
};

type ActivitiesQueryResponse = {
export type ActivitiesQueryResponse = {
getAllActivities: {
edges: {
node: Activity;
Expand Down

0 comments on commit 97d6a8b

Please sign in to comment.