UNPKG

@lomi./sdk

Version:

Official TypeScript SDK for the lomi. API

25 lines 719 B
/** * TransactionsService * AUTO-GENERATED - Do not edit manually * * Transaction history - view completed and pending transactions */ import type { Database } from '../types.js'; type TransactionsRow = Database['public']['Tables']['transactions']['Row']; export declare class TransactionsService { /** * List transactions * Transaction history - view completed and pending transactions */ static list(options?: { limit?: number; offset?: number; [key: string]: any; }): Promise<TransactionsRow[]>; /** * Get a single transaction */ static get(id: string): Promise<TransactionsRow>; } export {}; //# sourceMappingURL=TransactionsService.d.ts.map