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

12 lines
551 B
TypeScript

import type { PluginCreator } from 'postcss';
/** postcss-focus-within plugin options */
export type pluginOptions = {
/** Preserve the original notation. default: true */
preserve?: boolean;
/** The replacement class to be used in the polyfill. default: "[focus-within]" */
replaceWith?: string;
/** Disable the selector prefix that is used to prevent a flash of incorrectly styled content. default: false */
disablePolyfillReadyClass?: boolean;
};
declare const creator: PluginCreator<pluginOptions>;
export default creator;