faf-cli
Version:
😽 TURBO-CAT: The Rapid Catalytic Converter • Project DNA ✨ for ANY AI • Fully Integrated with React, Next.js, Svelte, TypeScript, Vite & n8n • FREE FOREVER • 10,000+ developers • Championship Edition
31 lines • 819 B
TypeScript
/**
* FAF VIBE Platform Detector ⚡️😽
* Detects no-code/low-code platforms for simplified $9 tier
*/
export interface PlatformInfo {
platform: string;
tier: 'vibe' | 'pro';
detected: boolean;
confidence: number;
indicators: string[];
}
export declare class PlatformDetector {
private readonly VIBE_PLATFORMS;
/**
* Detect if running on a FAF VIBE eligible platform
*/
detectPlatform(projectPath?: string): Promise<PlatformInfo>;
/**
* Get pricing tier based on platform
*/
getPricingTier(platform: PlatformInfo): {
price: number;
name: string;
emoji: string;
};
/**
* Get platform-specific messaging
*/
getPlatformMessage(platform: PlatformInfo): string;
}
//# sourceMappingURL=platform-detector.d.ts.map