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

5 lines
217 B
TypeScript

import type { PluginCreator } from 'postcss';
/** postcss-selector-not plugin options */
export type pluginOptions = Record<string, never>;
declare const creator: PluginCreator<pluginOptions>;
export default creator;