tsx-stack
Version:
⚡ Scaffold a modern React + TypeScript app with your choice of router, state, query, and styling stack
13 lines (12 loc) • 449 B
TypeScript
import { Ora } from "ora";
export interface ScaffoldConfig {
appName: string;
styling: "tailwind" | "mui" | "none";
router: "tanstack-router" | "react-router" | "none";
routerDevtools?: boolean;
state: "redux" | "zustand" | "jotai" | "none";
query: "tanstack-query" | "none";
queryDevtools?: boolean;
toastify?: boolean;
}
export declare function scaffoldProject(config: ScaffoldConfig, spinner: Ora): Promise<void>;