UNPKG

@featurevisor/core

Version:

Core package of Featurevisor for Node.js usage

10 lines (9 loc) 405 B
import { Dependencies } from "../dependencies"; import { Plugin } from "../cli"; export declare const ALLOWED_LANGUAGES_FOR_CODE_GENERATION: string[]; export interface GenerateCodeCLIOptions { language: string; outDir: string; } export declare function generateCodeForProject(deps: Dependencies, cliOptions: GenerateCodeCLIOptions): Promise<void>; export declare const generateCodePlugin: Plugin;