fix(core): update

This commit is contained in:
Philipp Kunz 2024-05-30 22:47:02 +02:00
parent 7ce3f83d54
commit e1c721d511
2 changed files with 2 additions and 2 deletions

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@api.global/typedrequest',
version: '3.0.27',
version: '3.0.28',
description: 'A TypeScript library for making typed requests towards APIs, including facilities for handling requests, routing, and virtual stream handling.'
}

View File

@ -4,7 +4,7 @@ import { TypedTools } from './classes.typedtools.js';
export type THandlerFunction<T extends plugins.typedRequestInterfaces.ITypedRequest> = (
requestArg: T['request'],
typedToolsArg?: any
typedToolsArg?: TypedTools
) => Promise<T['response']>;
/**