epiphany/node_modules/postcss-nesting/dist/index.d.ts
2023-12-09 22:48:07 -08:00

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;