UNPKG

form-functionality-library

Version:

A modular, flexible form functionality library for Webflow forms supporting single-step, multi-step, and branching forms

35 lines 996 B
/** * Webflow Integration Module - v1.7.0 HARMONY EDITION * Following Webflow's official patterns and best practices for elegant integration */ /** * Initialize Webflow integration with comprehensive error handling */ export declare function initWebflowIntegration(): void; /** * Check if Webflow integration is available */ export declare function isWebflowAvailable(): boolean; /** * Get comprehensive integration status (v1.6.1) */ export declare function getWebflowIntegrationStatus(): { initialized: boolean; webflowAvailable: boolean; formsRegistered: number; interceptorsActive: number; formDetails: Array<{ id: string; method: string; action: string; requiredFields: number; hasWebflowClass: boolean; }>; strategies: { directListeners: boolean; webflowPush: boolean; buttonInterception: boolean; actionOverride: boolean; }; }; //# sourceMappingURL=webflowIntegration.d.ts.map