UNPKG

@foal/cli

Version:

CLI tool for FoalTS

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