1.5.5 • Published 7 months ago

@types/connect-history-api-fallback-exclusions v1.5.5

Weekly downloads
164
License
MIT
Repository
github
Last release
7 months ago

Installation

npm install --save @types/connect-history-api-fallback-exclusions

Summary

This package contains type definitions for connect-history-api-fallback-exclusions (https://github.com/Wirewheel/connect-history-api-fallback#readme).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/connect-history-api-fallback-exclusions.

index.d.ts

// Type definitions for connect-history-api-fallback-exclusions 1.5
// Project: https://github.com/Wirewheel/connect-history-api-fallback#readme
// Definitions by: Tony Stone <https://github.com/tonystonee>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.3

/// <reference types="node" />

import { Url } from 'url';

import * as core from "express-serve-static-core";

declare function historyApiFallback(options?: historyApiFallback.Options): core.RequestHandler;

declare namespace historyApiFallback {
    interface Options {
        exclusions?: string[] | undefined;
        disableDotRule?: true | undefined;
        htmlAcceptHeaders?: string[] | undefined;
        index?: string | undefined;
        logger?: typeof console.log | undefined;
        rewrites?: Rewrite[] | undefined;
        verbose?: boolean | undefined;
    }

    interface Context {
        match: RegExpMatchArray;
        parsedUrl: Url;
    }
    type RewriteTo = (context: Context) => string;

    interface Rewrite {
        from: RegExp;
        to: string | RegExp | RewriteTo;
    }
}
export = historyApiFallback;

Additional Details

Credits

These definitions were written by Tony Stone.