4.0.2 • Published 2 years ago
@types/postcss-modules-local-by-default v4.0.2
Installation
npm install --save @types/postcss-modules-local-by-default
Summary
This package contains type definitions for postcss-modules-local-by-default (https://github.com/css-modules/postcss-modules-local-by-default).
Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/postcss-modules-local-by-default.
index.d.ts
// Type definitions for postcss-modules-local-by-default 4.0
// Project: https://github.com/css-modules/postcss-modules-local-by-default
// 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 localByDefault {
interface Options {
mode?: "global" | "local" | "pure" | undefined;
rewriteUrl?: ((global: boolean, url: string) => string) | undefined;
}
}
declare const creator: PluginCreator<localByDefault.Options>;
export = creator;
Additional Details
- Last updated: Thu, 18 Nov 2021 19:01:41 GMT
- Dependencies: @types/postcss
- Global values: none
Credits
These definitions were written by Jeow Li Huan.