10 lines
382 B
TypeScript
10 lines
382 B
TypeScript
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;
|