2.0.6 • Published 6 months ago

@types/webpack-blocks__postcss v2.0.6

Weekly downloads
204
License
MIT
Repository
github
Last release
6 months ago

Installation

npm install --save @types/webpack-blocks__postcss

Summary

This package contains type definitions for @webpack-blocks/postcss (https://github.com/andywer/webpack-blocks/tree/master/packages/postcss).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/webpack-blocks__postcss.

index.d.ts

// Type definitions for @webpack-blocks/postcss 2.0
// Project: https://github.com/andywer/webpack-blocks/tree/master/packages/postcss
// Definitions by: Max Boguslavskiy <https://github.com/maxbogus>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 3.7

import { Block } from 'webpack-blocks';

declare namespace postCss {
    type FunctionType = () => string;

    interface Plugin {
        parser?: string | FunctionType | undefined;
        syntax?: string | FunctionType | undefined;
        stringifier?: string | FunctionType | undefined;
    }

    interface Options {
        parser?: string | undefined;
        stringifier?: string | undefined;
        syntax?: string | undefined;
        plugins?: any[] | undefined;
    }
}

declare function postCss(options?: postCss.Options): Block;

export = postCss;

Additional Details

Credits

These definitions were written by Max Boguslavskiy.

2.0.5

7 months ago

2.0.4

8 months ago

2.0.6

6 months ago

2.0.3

3 years ago

2.0.2

3 years ago

2.0.1

4 years ago

2.0.0

5 years ago