Skip to content

Commit

Permalink
fixes pathParams typing in OpenApiRequestMetadata
Browse files Browse the repository at this point in the history
resolves cdimascio#233
  • Loading branch information
mathewmeconry committed Feb 14, 2020
1 parent dd39412 commit 8c5b574
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/framework/types.ts
Expand Up @@ -399,7 +399,7 @@ export interface OpenAPIFrameworkVisitor {
export interface OpenApiRequestMetadata {
expressRoute: string;
openApiRoute: string;
pathParams: string[];
pathParams: { [index: string]: string };
schema: OpenAPIV3.OperationObject;
}

Expand Down

0 comments on commit 8c5b574

Please sign in to comment.