Skip to content

Commit

Permalink
Implement openapi-format as module
Browse files Browse the repository at this point in the history
  • Loading branch information
thim81 committed Jan 8, 2024
1 parent 7bc6a54 commit 178d2f7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/types/PortmanConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ export const PortmanFuzzTypes = {
requestHeader: 'requestHeader'
} as const

export type PortmanFuzzType = typeof PortmanFuzzTypes[keyof typeof PortmanFuzzTypes]
export type PortmanFuzzType = (typeof PortmanFuzzTypes)[keyof typeof PortmanFuzzTypes]

export type FuzzingSchemaItems = {
fuzzType: PortmanFuzzType
Expand Down
2 changes: 1 addition & 1 deletion src/types/PortmanTestTypes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ export const PortmanTestTypes = {
contract: 'contract'
} as const

export type PortmanTestType = typeof PortmanTestTypes[keyof typeof PortmanTestTypes]
export type PortmanTestType = (typeof PortmanTestTypes)[keyof typeof PortmanTestTypes]

0 comments on commit 178d2f7

Please sign in to comment.