anvy
Version:
A CLI tool for integrating Anvy UI components into your React.js and Next.js projects.
13 lines (12 loc) • 415 B
TypeScript
export declare const ProjectTypes: {
readonly NEXT: "next";
readonly REACT: "react";
readonly VITE: "vite";
};
export type ProjectType = typeof ProjectTypes[keyof typeof ProjectTypes];
interface Config {
type: ProjectType;
language: 'javascript' | 'typescript';
}
export declare const processComponentContent: (content: string, config: Config, isExternalRegistry: boolean) => string;
export {};