9.0.4 • Published 6 months ago

@types/postcss-normalize v9.0.4

Weekly downloads
40,907
License
MIT
Repository
github
Last release
6 months ago

Installation

npm install --save @types/postcss-normalize

Summary

This package contains type definitions for postcss-normalize (https://github.com/csstools/postcss-normalize#readme).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/postcss-normalize.

index.d.ts

// Type definitions for postcss-normalize 9.0
// Project: https://github.com/csstools/postcss-normalize#readme
// Definitions by: Piotr Kuczynski <https://github.com/pkuczynski>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

import { Plugin } from 'postcss';

declare namespace Normalize {
    interface Options {
        /**
         * @default false
         */
        allowDuplicates?: boolean | undefined;

        /**
         * @default null
         */
        forceImport?: boolean | string | undefined;

        /**
         * @default null
         */
        browsers?: string | undefined;
    }

    type NormalizePlugin = Plugin<Options>;
}

declare const normalize: Normalize.NormalizePlugin;

export = normalize;

Additional Details

  • Last updated: Wed, 07 Jul 2021 17:02:34 GMT
  • Dependencies: @types/postcss
  • Global values: none

Credits

These definitions were written by Piotr Kuczynski.