@types/koa-static-server
TypeScript icon, indicating that this package has built-in type declarations

1.5.3 • Public • Published

Installation

npm install --save @types/koa-static-server

Summary

This package contains type definitions for koa-static-server (https://github.com/pkoretic/koa-static-server).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/koa-static-server.

index.d.ts

/* =================== USAGE ===================

    import serve = require("koa-static-server");
    var Koa = require('koa');

    var app = new Koa();
    app.use(serve(serve({rootDir: 'web'}));

 =============================================== */
import { Middleware } from "koa";

declare function KoaStaticServer(options: KoaStaticServer.Options): Middleware;

declare namespace KoaStaticServer {
    interface Options {
        /**
         * directory that is to be served
         */
        rootDir?: string | undefined;
        /**
         * optional rewrite path
         */
        rootPath?: string | undefined;
        /**
         * optional default file to serve if requested static is missing
         */
        notFoundFile?: string | undefined;
        /**
         * request access log to console
         */
        log?: boolean | undefined;
        /**
         * don't execute any downstream middleware. defaults to true
         */
        last?: boolean | undefined;
        /**
         * Browser cache max-age in milliseconds. defaults to 0
         */
        maxage?: number | undefined;
        /**
         * Allow transfer of hidden files. defaults to false
         */
        hidden?: boolean | undefined;
        /**
         * Try to serve the gzipped version of a file automatically when gzip is supported by a client and if the requested
         */
        gzip?: boolean | undefined;
        /**
         * Try to serve the brotli version of a file automatically when brotli is supported by a client and in the requested
         */
        brotli?: boolean | undefined;
        index?: string | undefined;
    }
}

export = KoaStaticServer;

Additional Details

  • Last updated: Tue, 07 Nov 2023 09:09:38 GMT
  • Dependencies: @types/koa

Credits

These definitions were written by wulunyi.

Readme

Keywords

none

Package Sidebar

Install

npm i @types/koa-static-server

Weekly Downloads

223

Version

1.5.3

License

MIT

Unpacked Size

6.04 kB

Total Files

5

Last publish

Collaborators

  • types