UNPKG
plugify-plugins-types-generator
Version:
latest (1.4.1)
1.4.1
1.4.0
1.3.8
1.3.7
1.3.6
1.3.5
1.3.4
1.3.3
1.3.2
1.3.1
tool to generate d.ts for plugify plugins by pplugin file (ESM)
plugify-plugins-types-generator
/
src
/
plugify
/
utils.ts
5 lines
•
210 B
text/typescript
View Raw
1
2
3
4
5
import
{ writeFileSync }
from
"fs"
;
import
{ join }
from
"path"
;
export
function
writeDts
(
path
:
string
,
name
:
string
,
content
:
string
) {
writeFileSync
(
join
(path,
`plugify-
${name}
.d.ts`
), content,
'utf8'
); }