npm.io
0.6.3 • Published 2 years ago

@types/connect-livereload

Licence
MIT
Version
0.6.3
Deps
1
Size
4 kB
Vulns
0
Weekly
0
Stars
51.4K

Installation

npm install --save @types/connect-livereload

Summary

This package contains type definitions for connect-livereload (https://github.com/intesso/connect-livereload).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/connect-livereload.

index.d.ts

import { HandleFunction } from "connect";

declare function livereload(): HandleFunction;
declare function livereload(options: livereload.Options): HandleFunction;

declare namespace livereload {
    export type FileMatcher = string | RegExp;

    export interface Rule {
        match: RegExp;
        fn: (w: string, s: string) => string;
    }

    export interface Options {
        ignore?: FileMatcher[] | undefined;
        excludeList?: FileMatcher[] | undefined;

        include?: FileMatcher[] | undefined;
        html?: ((val: string) => boolean) | undefined;
        rules?: Rule[] | undefined;
        disableCompression?: boolean | undefined;

        hostname?: string | undefined;
        port?: number | undefined;
        src?: string | undefined;
        plugins?: string[] | undefined;
    }
}

export = livereload;

Additional Details

  • Last updated: Mon, 06 Nov 2023 2205 GMT
  • Dependencies: @types/connect

Credits

These definitions were written by Maxime LUCE.