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
/
ts-generator
/
module.js
6 lines
(5 loc)
•
160 B
JavaScript
View Raw
1
2
3
4
5
6
export
const
plugifyModuleGenerator
= (
body, { name, modulePrefix =
":"
}
) => {
return
`declare module "
${modulePrefix}
${name}
" {
${body.join(
"\n"
)}
}`
; };