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
/
dist
/
src
/
plugify
/
utils.js
6 lines
(5 loc)
•
187 B
JavaScript
View Raw
1
2
3
4
5
6
import
{ writeFileSync }
from
"fs"
;
import
{ join }
from
"path"
;
export
function
writeDts
(
path, name, content
) {
writeFileSync
(
join
(path,
`plugify-
${name}
.d.ts`
), content,
'utf8'
); }