UNPKG
@hacxy/json2ts
Version:
latest (0.3.0)
0.3.0
0.2.0
0.1.0
0.0.1
Json to typescript types generator
github.com/hacxy/json2ts
hacxy/json2ts
@hacxy/json2ts
/
dist
/
index.d.ts
6 lines
(5 loc)
•
184 B
TypeScript
View Raw
1
2
3
4
5
6
export
interface
Json2TsOptions
{
indentation
?:
number
; }
declare
function
json2ts
(
json
:
string
,
name
?:
string
,
options
?:
Json2TsOptions
):
Promise
<
string
>;
export
default
json2ts;