mirror of
https://github.com/flarum/framework.git
synced 2025-02-19 18:34:00 +08: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;
|