$ cnpm install @types/postcss-modules-scope
npm install --save @types/postcss-modules-scope
This package contains type definitions for postcss-modules-scope (https://github.com/css-modules/postcss-modules-scope).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/postcss-modules-scope.
// Type definitions for postcss-modules-scope 3.0
// Project: https://github.com/css-modules/postcss-modules-scope
// Definitions by: Jeow Li Huan <https://github.com/huan086>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.2
import { PluginCreator } from "postcss";
declare namespace scope {
interface Options {
generateScopedName?: ((
name: string,
path: string,
css: string
) => string) | undefined;
generateExportEntry?: ((
name: string,
scopedName: string,
path: string,
css: string
) => { key: string; value: string }) | undefined;
}
}
declare const creator: PluginCreator<scope.Options>;
export = creator;
These definitions were written by Jeow Li Huan.
Copyright 2013 - present © cnpmjs.org | Home |