Skip to content

Commit 029e2b3

Browse files
Merge pull request #82 from bitgopatmcl/expose-response-type
Expose response type
2 parents f41013f + 9871b7e commit 029e2b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/express-wrapper/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import {
1616
} from './request';
1717
import { defaultResponseEncoder, ResponseEncoder } from './response';
1818

19-
export type { ResponseEncoder } from './response';
19+
export type { ResponseEncoder, NumericOrKeyedResponseType } from './response';
2020

2121
const isHttpVerb = (verb: string): verb is 'get' | 'put' | 'post' | 'delete' =>
2222
verb === 'get' || verb === 'put' || verb === 'post' || verb === 'delete';

0 commit comments

Comments
 (0)