mirror of
https://github.com/flarum/framework.git
synced 2025-02-16 15:32:55 +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;
|