$ cnpm install @types/postcss-normalize
npm install --save @types/postcss-normalize
This package contains type definitions for postcss-normalize (https://github.com/csstools/postcss-normalize#readme).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/postcss-normalize.
// 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;
These definitions were written by Piotr Kuczynski.
Copyright 2013 - present © cnpmjs.org | Home |