UNPKG
@zkochan/table
Version:
latest (2.0.1)
2.0.1
2.0.0
1.0.1
1.0.0
Formats data into a string table.
github.com/gajus/table
gajus/table
@zkochan/table
/
dist
/
src
/
drawTable.d.ts
3 lines
(2 loc)
•
188 B
TypeScript
View Raw
1
2
3
import
type
{
TableConfig
,
Row
}
from
'./types/internal'
;
export
declare
const
drawTable
:
(
rows
:
Row
[],
outputColumnWidths
:
number
[],
rowHeights
:
number
[],
config
:
TableConfig
) =>
string
;