UNPKG

@foal/cli

Version:

CLI tool for FoalTS

16 lines (15 loc) 446 B
import { Generator } from '../../../services'; /** * Service for connecting a Vue frontend to a FoalTS application. */ export declare class ConnectVueCommandService { private generator; constructor(generator: Generator); /** * Configure a Vue project to interact with a FoalTS application. * * @param {string} path - The path to the Vue project directory * @returns {void} */ run(path: string): void; }