interface OldPlugin<T> {
    postcss: Transformer;
    postcssPlugin: string;
    postcssVersion: string;
    (opts?): Transformer;
    (root, result): void | Promise<void>;
}

Type Parameters

  • T

Hierarchy (view full)

Properties

postcss: Transformer
postcssPlugin: string
postcssVersion: string