UNPKG

css-has-pseudo

Version:
15 lines (11 loc) 427 B
import type { PluginCreator } from 'postcss'; declare const creator: PluginCreator<pluginOptions>; export default creator; /** css-has-pseudo plugin options */ export declare type pluginOptions = { /** Preserve the original notation. default: true */ preserve?: boolean; /** Change the selector that is used to adjust specificity. default: "does-not-exist" */ specificityMatchingName?: string; }; export { }