Files
DefinitelyTyped/types/koa-static/index.d.ts
2017-08-20 15:37:53 -07:00

51 lines
1.4 KiB
TypeScript

// Type definitions for koa-static 3.0
// Project: https://github.com/koajs/static
// Definitions by: Jerry Chin <https://github.com/hellopao>
// Definitions: https://github.com/hellopao/DefinitelyTyped
/* =================== USAGE ===================
import serve = require("koa-static");
var Koa = require('koa');
var app = new Koa();
app.use(serve("."));
=============================================== */
import * as Koa from "koa";
declare function serve(root: string, opts?: {
/**
* Default file name, defaults to 'index.html'
*/
index?: boolean | string;
/**
* If true, serves after return next(),allowing any downstream middleware to respond first.
*/
defer?: boolean;
/**
* Browser cache max-age in milliseconds. defaults to 0
*/
maxage?: number;
/**
* Allow transfer of hidden files. defaults to false
*/
hidden?: boolean;
/**
* Try to serve the gzipped version of a file automatically when gzip is supported by a client and if the requested file with .gz extension exists. defaults to true.
*/
gzip?: boolean;
/**
* Try to match extensions from passed array to search for file when no extension is sufficed in URL. First found is served. (defaults to `false`)
*/
extensions?: string[];
}): Koa.Middleware;
declare namespace serve {}
export = serve;