Files
firefly-iii/resources/js/ComponentDemo/react-element-to-jsx-string/formatter/formatTree.js.flow

9 lines
253 B
Plaintext

/* @flow */
import formatTreeNode from './formatTreeNode';
import type { Options } from './../options';
import type { TreeNode } from './../tree';
export default (node: TreeNode, options: Options): string =>
formatTreeNode(node, false, 0, options);