epiphany/node_modules/css-has-pseudo/dist/index.d.ts
2023-12-09 22:48:07 -08:00

10 lines
405 B
TypeScript

import type { PluginCreator } from 'postcss';
/** css-has-pseudo plugin options */
export 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;
};
declare const creator: PluginCreator<pluginOptions>;
export default creator;