Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
quietbits committed Apr 3, 2024
1 parent 6d9a0d9 commit 1635f61
Showing 1 changed file with 9 additions and 12 deletions.
21 changes: 9 additions & 12 deletions src/constants/exploreEndpointsPages.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,15 @@ type ExploreEndpointsPagesProps = {
nestedItems: {
route: Routes;
label: string;
form:
| {
docsUrl: string;
docsLabel?: string;
requestMethod: "GET" | "POST";
endpointUrlTemplate: string;
requiredParams: string;
isStreaming?: boolean;
custom?: AnyObject;
}
// TODO: remove once all pages are filled
| undefined;
form: {
docsUrl: string;
docsLabel?: string;
requestMethod: "GET" | "POST";
endpointUrlTemplate: string;
requiredParams: string;
isStreaming?: boolean;
custom?: AnyObject;
};
}[];
}[];
};
Expand Down

0 comments on commit 1635f61

Please sign in to comment.