fix(core): update

This commit is contained in:
Philipp Kunz 2024-01-09 10:25:03 +01:00
parent 552a15bb2f
commit 99427f5835
3 changed files with 3 additions and 3 deletions

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@api.global/typedserver',
version: '3.0.15',
version: '3.0.16',
description: 'easy serving of static files'
}

View File

@ -14,7 +14,7 @@ export class HandlerStatic extends Handler {
headers?: { [key: string]: string };
serveIndexHtmlDefault?: boolean;
enableCompression?: boolean;
preferredCompressionMethod?: 'gzip' | 'deflate' | 'br';
preferredCompressionMethod?: TCompressionMethod;
}
) {
super('GET', async (req, res) => {

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@api.global/typedserver',
version: '3.0.15',
version: '3.0.16',
description: 'easy serving of static files'
}