@types/rollup-plugin-visualizer
TypeScript icon, indicating that this package has built-in type declarations

4.2.4 • Public • Published

Installation

npm install --save @types/rollup-plugin-visualizer

Summary

This package contains type definitions for rollup-plugin-visualizer (https://github.com/doesdev/rollup-plugin-analyzer#readme).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/rollup-plugin-visualizer.

import { Plugin } from "rollup";

declare namespace visualizer {
    interface PluginVisualizerOptions {
        /**
         * Name of the file with diagram to generate
         * @default "stats.html"
         */
        filename?: string | undefined;
        /**
         * Title tag value
         * @default "Rollup Visualizer"
         */
        title?: string | undefined;
        /**
         * Use sourcemaps to calculate sizes (e.g. after UglifyJs or Terser)
         * @default false
         */
        sourcemap?: boolean | undefined;
        /**
         * Open generated file in default user agent
         * @default false
         */
        open?: boolean | undefined;
        /**
         * Which diagram type to use
         * @default "treemap"
         */
        template?: "treemap" | "sunburst" | "network" | undefined;
        /**
         * Product portable json file that can be used with
         * plugin CLI util to generate graph from several json files.
         * Every UI property ignored in this case.
         * @default false
         */
        json?: boolean | undefined;
        /**
         * Collect gzip size from source code and display it at chart
         * @default false
         */
        gzipSize?: boolean | undefined;
        /**
         * Collect brotli size from source code and display it at chart.
         * Only if current node version supports it
         * @default false
         */
        brotliSize?: boolean | undefined;
    }
}

declare function visualizer(options?: visualizer.PluginVisualizerOptions): Plugin;

export = visualizer;

Additional Details

  • Last updated: Fri, 01 Mar 2024 00:50:47 GMT
  • Dependencies: rollup

Credits

These definitions were written by Nick, and Max Boguslavskiy.

/@types/rollup-plugin-visualizer/

    Package Sidebar

    Install

    npm i @types/rollup-plugin-visualizer

    Weekly Downloads

    10,676

    Version

    4.2.4

    License

    MIT

    Unpacked Size

    6.13 kB

    Total Files

    5

    Last publish

    Collaborators

    • types