UNPKG

ltfi-wsap

Version:

Official Node.js/TypeScript SDK for LTFI-WSAP (Web System Alignment Protocol) by Kief Studio - Part of the LTFI ecosystem

18 lines (16 loc) 297 B
/** * LTFI-WSAP Configuration */ export interface WSAPConfig { apiKey: string; baseURL: string; timeout: number; retries: number; debug: boolean; } export const defaultConfig: Partial<WSAPConfig> = { baseURL: 'https://api.ltfi.ai', timeout: 30000, retries: 3, debug: false };