@types/postcss-modules-scope
TypeScript icon, indicating that this package has built-in type declarations

3.0.4 • Public • Published

Installation

npm install --save @types/postcss-modules-scope

Summary

This package contains type definitions for postcss-modules-scope (https://github.com/css-modules/postcss-modules-scope).

Details

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

index.d.ts

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;

Additional Details

  • Last updated: Tue, 07 Nov 2023 09:09:39 GMT
  • Dependencies: postcss

Credits

These definitions were written by Jeow Li Huan.

Readme

Keywords

none

Package Sidebar

Install

npm i @types/postcss-modules-scope

Weekly Downloads

294,322

Version

3.0.4

License

MIT

Unpacked Size

4.01 kB

Total Files

5

Last publish

Collaborators

  • types