epiphany/node_modules/postcss-nesting/dist/index.d.ts

11 lines
382 B
TypeScript
Raw Normal View History

2023-12-09 22:48:07 -08:00
import type { PluginCreator } from 'postcss';
/** postcss-nesting plugin options */
export type pluginOptions = {
/** Avoid the `:is()` pseudo class as much as possible. default: false */
noIsPseudoSelector?: boolean;
/** Silence the `@nest` warning. */
silenceAtNestWarning?: boolean;
};
declare const creator: PluginCreator<pluginOptions>;
export default creator;