kjelsrud.dev/node_modules/mdast-util-phrasing/lib/index.d.ts

13 lines
370 B
TypeScript
Raw Normal View History

2023-07-19 21:31:30 +02:00
/**
* Check if the given value is *phrasing content*.
*
* @param
* Thing to check, typically `Node`.
* @returns
* Whether `node` is phrasing content.
*/
export const phrasing: AssertPredicatePhrasing
export type PhrasingContent = import('mdast').PhrasingContent
export type AssertPredicatePhrasing =
import('unist-util-is').AssertPredicate<PhrasingContent>