UNPKG

friday-sdk

Version:

Official JavaScript/TypeScript SDK for the Friday API

10 lines (9 loc) 172 B
export interface SDKOptions { apiKey: string; baseUrl?: string; } export interface ApiResponse<T = any> { success: boolean; data?: T; error?: string; }