UNPKG

prevent-widows

Version:

Prevent widows from appearing in a string.

9 lines (8 loc) 332 B
import type { Plugin } from "posthtml"; import { PreventWindowsOptions } from ".."; export type PosthtmlOptions = { attrName: string; attrRemove: boolean; }; declare const posthtml: (customPosthtmlOptions?: Partial<PosthtmlOptions>, preventWidowsOptions?: PreventWindowsOptions) => Plugin<unknown>; export default posthtml;