Compare commits

...

2 Commits

Author SHA1 Message Date
21938e5f20 3.0.16 2024-01-09 10:25:04 +01:00
99427f5835 fix(core): update 2024-01-09 10:25:03 +01:00
4 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@api.global/typedserver",
"version": "3.0.15",
"version": "3.0.16",
"description": "easy serving of static files",
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",

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'
}