UNPKG

@reuvenorg/react-native-boilerplate-ultimate

Version:

A powerful CLI tool for creating React Native projects with modular architecture. Generate, manage, and scaffold React Native applications with pre-built modules and best practices.

10 lines 533 B
import { TemplateContext } from '../utils/template-context.js'; export declare abstract class FileProcessor { abstract canProcess(filePath: string): boolean; abstract process(filePath: string, context: TemplateContext): Promise<void>; protected readFile(filePath: string): Promise<string>; protected writeFile(filePath: string, content: string): Promise<void>; protected isTextFile(filePath: string): boolean; protected shouldSkipFile(filePath: string): boolean; } //# sourceMappingURL=base-processor.d.ts.map