UNPKG

@idealite/web-services

Version:

Comprehensive web services library with webhook system and Mux integration

29 lines 844 B
export declare class WebServicesService { /** * A simple utility function to format a greeting message * @param name - The name to greet * @returns A formatted greeting message */ formatGreeting(name: string): string; /** * A utility function to get service status * @returns Service status information */ getServiceStatus(): { status: string; library: string; timestamp: string; }; /** * A utility function to generate a random ID * @returns A random ID string */ generateId(): string; /** * A utility function to validate email format * @param email - Email to validate * @returns Boolean indicating if email is valid */ validateEmail(email: string): boolean; } //# sourceMappingURL=web-services.service.d.ts.map