UNPKG
@felisdiligens/md-table-tools
Version:
latest (0.2.0)
0.2.0
0.1.3
0.1.2
0.1.1
0.1.0
MultiMarkdown table tools
@felisdiligens/md-table-tools
/
dist
/
mjs
/
tables
/
tableParser.d.ts
8 lines
(7 loc)
•
184 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
Table
}
from
"./table.js"
;
export
declare
class
ParsingError
extends
Error
{
constructor
(
msg
:
string
); }
export
interface
TableParser
{
parse
(
table
:
string
):
Table
; }