$ gnpm 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.
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;
exportGlobals?: boolean | undefined;
}
}
declare const creator: PluginCreator<scope.Options>;
export = creator;
These definitions were written by Jeow Li Huan.
Copyright 2013 - present © cnpmjs.org | Home |