5.1.34 • Published 6 months ago

@types/autoprefixer-core v5.1.34

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

Installation

npm install --save @types/autoprefixer-core

Summary

This package contains type definitions for Autoprefixer Core (https://github.com/postcss/autoprefixer-core).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/autoprefixer-core.

index.d.ts

// Type definitions for Autoprefixer Core 5.1.11
// Project: https://github.com/postcss/autoprefixer-core
// Definitions by: Asana <https://asana.com>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped


interface Config {
    browsers?: string[] | undefined;
    cascade?: boolean | undefined;
    remove?: boolean | undefined;
}

interface Options {
    from?: string | undefined;
    to?: string | undefined;
    safe?: boolean | undefined;
    map?: {
        inline?: boolean | undefined;
        prev?: string | Object | undefined;
    } | undefined
}

interface Result {
    css: string;
    map: string;
    opts: Options;
}

interface Processor {
    postcss: any;
    info(): string;
    process(css: string, opts?: Options): Result;
}

interface Exports {
    (config: Config): Processor;
    postcss: any;
    info(): string;
    process(css: string, opts?: Options): Result;
}

declare var exports: Exports;
export = exports;

Additional Details

  • Last updated: Wed, 07 Jul 2021 21:44:40 GMT
  • Dependencies: none
  • Global values: none

Credits

These definitions were written by Asana.

5.1.34

6 months ago

5.1.33

7 months ago

5.1.32

8 months ago

5.1.31

3 years ago

5.1.30

8 years ago

5.1.29

8 years ago

5.1.28-alpha

8 years ago

5.1.27-alpha

8 years ago

5.1.26-alpha

8 years ago

5.1.25-alpha

8 years ago

5.1.24-alpha

8 years ago

5.1.23-alpha

8 years ago

5.1.22-alpha

8 years ago

5.1.17-alpha

8 years ago

5.1.16-alpha

8 years ago