epiphany/node_modules/postcss-dir-pseudo-class/dist/index.d.ts

13 lines
498 B
TypeScript
Raw Normal View History

2023-12-09 22:48:07 -08:00
import type { PluginCreator } from 'postcss';
/** postcss-dir-pseudo-class plugin options */
export type pluginOptions = {
/** Preserve the original notation. default: true */
preserve?: boolean;
/** Assume a direction for the document. default: null */
dir?: 'ltr' | 'rtl';
/** Assume that the CSS is intended to be used in Shadow DOM with Custom Elements. default: false */
shadow?: boolean;
};
declare const creator: PluginCreator<pluginOptions>;
export default creator;