rehype-minify-whitespace
Version:
rehype plugin to collapse whitespace
12 lines • 383 B
TypeScript
/**
* Minify whitespace.
*
* @param {Options | null | undefined} [options]
* Configuration (optional).
* @returns
* Transform.
*/
export default function rehypeMinifyWhitespace(options?: Options | null | undefined): (tree: Root) => undefined;
import type { Options } from 'hast-util-minify-whitespace';
import type { Root } from 'hast';
//# sourceMappingURL=index.d.ts.map