UNPKG

@wuapi/generator

Version:
15 lines (14 loc) 415 B
import { $Project } from "@wuapi/essential"; import { BasePlugin, PluginDescription } from "./plugin_base"; /** * Generate a json repository. */ export default class RepositoryPlugin extends BasePlugin { /** * Returns the description of this plugin. */ getDescription(): PluginDescription; process(project: $Project, outputDir: string, args: { [key: string]: string; }): void; }