UNPKG

plugify-plugins-types-generator

Version:

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

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