Fix import

This commit is contained in:
Aya Morisawa 2019-01-30 17:15:12 +09:00
parent d06fbbe3ea
commit b3fc4dc00f
No known key found for this signature in database
GPG Key ID: 3E64865D70D579F2
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ import * as assert from 'assert';
import { parse, parsePlain } from '../src/mfm/parse';
import { toHtml } from '../src/mfm/toHtml';
import { createTree as tree, createLeaf as leaf, MfmTree } from '../src/mfm/types';
import { removeOrphanedBrackets } from '../src/mfm/parser';
import { removeOrphanedBrackets } from '../src/mfm/language';
function text(text: string): MfmTree {
return leaf('text', { text });