statusPageMiddleware.d.ts 538 B

1234567891011121314
  1. /// <reference types="node" />
  2. /**
  3. * Copyright (c) Facebook, Inc. and its affiliates.
  4. *
  5. * This source code is licensed under the MIT license found in the
  6. * LICENSE file in the root directory of this source tree.
  7. */
  8. import http from 'http';
  9. /**
  10. * Status page so that anyone who needs to can verify that the packager is
  11. * running on 8081 and not another program / service.
  12. */
  13. export default function statusPageMiddleware(_req: http.IncomingMessage, res: http.ServerResponse): void;
  14. //# sourceMappingURL=statusPageMiddleware.d.ts.map