UNPKG
clime
Version:
dev (0.5.0-dev.3)
dev-lion (0.5.0-dev-lion.5)
latest (0.5.16)
0.5.16
0.5.15
0.5.14
0.5.13
0.5.12
0.5.11
0.5.10
0.5.9
0.5.8
0.5.7
0.5.6
0.5.5
0.5.4
0.5.3
0.5.2
0.5.1
0.5.0
0.5.0-dev-lion.5
0.5.0-dev-lion.4
0.5.0-dev-lion.3
0.5.0-dev-lion.2
0.5.0-dev-lion.1
0.5.0-dev.3
0.5.0-dev.2
0.5.0-dev.1
0.5.0-dev.0
0.4.4
0.4.3
0.4.2
0.4.1
0.4.0
0.3.3
0.3.2
0.3.1
0.3.0
0.2.0
0.1.0
0.0.0
The command-line interface framework for TypeScript.
github.com/vilic/clime
vilic/clime
clime
/
bld
/
internal-util
/
string.d.ts
7 lines
(6 loc)
•
296 B
TypeScript
View Raw
1
2
3
4
5
6
7
export
declare
type
TableRow
= (
string
|
undefined
)[];
export
declare
function
buildTableOutput
(
rows
:
TableRow
[], {separators, indent}?: { separators?:
string
|
string
[]; indent?:
string
|
number
; }
):
string
;
export
declare
function
indent
(
text
:
string
,
indent
:
number
|
string
):
string
;