UNPKG

plugify-plugins-types-generator

Version:

tool to generate d.ts for plugify plugins by pplugin file (ESM)

6 lines (5 loc) 160 B
export const plugifyModuleGenerator = (body, { name, modulePrefix = ":" }) => { return `declare module "${modulePrefix}${name}" { ${body.join("\n")} }`; };