react-exe
Version:
A powerful React component executor that renders code with external dependencies and custom styling
9 lines (8 loc) • 380 B
TypeScript
import { type ClassValue } from "clsx";
import type { CodeFile } from "../index";
export declare const transformMultipleFiles: (files: CodeFile[], dependencies: Record<string, any>) => string;
export declare const removeDefaultExport: (input: string) => {
modifiedInput: string;
exportedName: string | null;
};
export declare function cn(...inputs: ClassValue[]): string;