mirror of
https://github.com/flarum/core.git
synced 2025-08-18 14:22:02 +02:00
6 lines
163 B
TypeScript
6 lines
163 B
TypeScript
import type Mithril from 'mithril';
|
|
/**
|
|
* Extract the text nodes from a virtual element.
|
|
*/
|
|
export default function extractText(vdom: Mithril.Children): string;
|