@rainfi/sdk
Version:
This package is used to interact with Rain.fi protocol on Solana
18 lines (17 loc) • 504 B
TypeScript
export * from './Collection';
export * from './Loan';
export * from './Pool';
export * from './Request';
export * from './UserStats';
import { Collection } from './Collection';
import { Loan } from './Loan';
import { Pool } from './Pool';
import { Request } from './Request';
import { UserStats } from './UserStats';
export declare const accountProviders: {
Collection: typeof Collection;
Loan: typeof Loan;
Pool: typeof Pool;
Request: typeof Request;
UserStats: typeof UserStats;
};