UNPKG
tsgen-lib
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
Typescript generation library
github.com/praveen-mohan-cs/tsgen-lib
praveen-mohan-cs/tsgen-lib
tsgen-lib
/
dist
/
index.d.mts
8 lines
(6 loc)
•
227 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
declare
const
sayHello
:
(
firstName
:
string
,
lastName
:
string
) =>
void
;
declare
const
sayBye
:
() =>
void
;
declare
const
getContentTypes
:
() =>
Promise
<{ [
key
:
string
]:
any
; }>;
export
{ getContentTypes, sayBye, sayHello };