UNPKG

plugify-plugins-types-generator

Version:

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

6 lines (5 loc) 187 B
import { writeFileSync } from "fs"; import { join } from "path"; export function writeDts(path, name, content) { writeFileSync(join(path, `plugify-${name}.d.ts`), content, 'utf8'); }