|
| 1 | +/** |
| 2 | + * Copyright (c) Meta Platforms, Inc. and affiliates. |
| 3 | + * |
| 4 | + * This source code is licensed under the MIT license found in the |
| 5 | + * LICENSE file in the root directory of this source tree. |
| 6 | + * |
| 7 | + * @flow strict |
| 8 | + * @format |
| 9 | + * @oncall react_native |
| 10 | + */ |
| 11 | + |
| 12 | +declare module 'serve-static' { |
| 13 | + import type {NextHandleFunction} from 'connect'; |
| 14 | + import type http from 'http'; |
| 15 | + |
| 16 | + declare export type Options = $ReadOnly<{ |
| 17 | + /** |
| 18 | + * Enable or disable accepting ranged requests, defaults to true. Disabling |
| 19 | + * this will not send `Accept-Ranges` and ignore the contents of the |
| 20 | + * `Range` request header. |
| 21 | + */ |
| 22 | + acceptRanges?: boolean, |
| 23 | + |
| 24 | + /** |
| 25 | + * Enable or disable setting `Cache-Control` response header, defaults to |
| 26 | + * true. Disabling this will ignore the `immutable` and `maxAge` options. |
| 27 | + */ |
| 28 | + cacheControl?: boolean, |
| 29 | + |
| 30 | + /** |
| 31 | + * Set how "dotfiles" are treated when encountered. A dotfile is a file or |
| 32 | + * directory that begins with a dot ("."). |
| 33 | + * |
| 34 | + * Note this check is done on the path itself without checking if the path |
| 35 | + * actually exists on the disk. If `root` is specified, only the dotfiles |
| 36 | + * above the root are checked (i.e. the root itself can be within a dotfile |
| 37 | + * when when set to "deny"). |
| 38 | + * |
| 39 | + * The default value is 'ignore'. |
| 40 | + * |
| 41 | + * 'allow' No special treatment for dotfiles |
| 42 | + * 'deny' Send a 403 for any request for a dotfile |
| 43 | + * 'ignore' Pretend like the dotfile does not exist and call next() |
| 44 | + */ |
| 45 | + dotfiles?: string, |
| 46 | + |
| 47 | + /** |
| 48 | + * Enable or disable etag generation, defaults to true. |
| 49 | + */ |
| 50 | + etag?: boolean, |
| 51 | + |
| 52 | + /** |
| 53 | + * Set file extension fallbacks. When set, if a file is not found, the |
| 54 | + * given extensions will be added to the file name and search for. |
| 55 | + * The first that exists will be served. Example: ['html', 'htm']. |
| 56 | + * |
| 57 | + * The default value is false. |
| 58 | + */ |
| 59 | + extensions?: Array<string> | false, |
| 60 | + |
| 61 | + /** |
| 62 | + * Let client errors fall-through as unhandled requests, otherwise forward |
| 63 | + * a client error. |
| 64 | + * |
| 65 | + * The default value is true. |
| 66 | + */ |
| 67 | + fallthrough?: boolean, |
| 68 | + |
| 69 | + /** |
| 70 | + * Enable or disable the immutable directive in the `Cache-Control` response |
| 71 | + * header. |
| 72 | + * |
| 73 | + * If enabled, the `maxAge` option should also be specified to enable |
| 74 | + * caching. The immutable directive will prevent supported clients from |
| 75 | + * making conditional requests during the life of the maxAge option to |
| 76 | + * check if the file has changed. |
| 77 | + */ |
| 78 | + immutable?: boolean, |
| 79 | + |
| 80 | + /** |
| 81 | + * By default this module will send "index.html" files in response to a |
| 82 | + * request on a directory. To disable this set false or to supply a new |
| 83 | + * index pass a string or an array in preferred order. |
| 84 | + */ |
| 85 | + index?: boolean | string | Array<string>, |
| 86 | + |
| 87 | + /** |
| 88 | + * Enable or disable `Last-Modified` header, defaults to true. Uses the file |
| 89 | + * system's last modified value. |
| 90 | + */ |
| 91 | + lastModified?: boolean, |
| 92 | + |
| 93 | + /** |
| 94 | + * Provide a max-age in milliseconds for http caching, defaults to 0. This |
| 95 | + * can also be a string accepted by the `ms` module. |
| 96 | + */ |
| 97 | + maxAge?: number | string, |
| 98 | + |
| 99 | + /** |
| 100 | + * Redirect to trailing "/" when the pathname is a dir. Defaults to true. |
| 101 | + */ |
| 102 | + redirect?: boolean, |
| 103 | + |
| 104 | + /** |
| 105 | + * Function to set custom headers on response. Alterations to the headers |
| 106 | + * need to occur synchronously. |
| 107 | + * |
| 108 | + * The function is called as `fn(res, path, stat)`, where the arguments are: |
| 109 | + * `res` the response object |
| 110 | + * `path` the file path that is being sent |
| 111 | + * `stat` the stat object of the file that is being sent |
| 112 | + */ |
| 113 | + setHeaders?: (res: http.ServerResponse, path: string, stat: any) => any, |
| 114 | + }>; |
| 115 | + |
| 116 | + declare type serveStatic = ( |
| 117 | + root: string, |
| 118 | + options?: Options, |
| 119 | + ) => NextHandleFunction; |
| 120 | + |
| 121 | + declare module.exports: serveStatic; |
| 122 | +} |
0 commit comments