UNPKG

postcss-var-func-fallback

Version:

PostCSS plugin Adds fallback values to var(name) occurences.

10 lines (7 loc) 209 B
import {PluginCreator} from "postcss"; export interface Options { variables?: Record<string, string> treatErrorsAsWarnings?: boolean; } declare const value: PluginCreator<Options>; export default value;