UNPKG

@selldone/sdk-storefront

Version:

A TypeScript SDK to connect to your shop and build a fully functional storefront and website by simply developing a frontend web application. All backend operations are seamlessly managed by the serverless Selldone solution.

44 lines (43 loc) 1.05 kB
export declare class UserProfile { id: number; user_id: number; verified: boolean; score: number; credit: number; name: string; tel?: string | null; email?: string | null; web?: string | null; avatar?: string | null; text?: string | null; description?: string | null; address?: string | null; socials?: any[] | null; nominated_id?: number | null; type: string; followers_count: string; following_count: string; constructor(data: UserProfileInput); } type UserProfileInput = { id: number; user_id: number; verified: boolean; score: number; credit: number; name: string; type: string; followers_count: string; following_count: string; tel?: string | null; email?: string | null; web?: string | null; avatar?: string | null; text?: string | null; description?: string | null; address?: string | null; socials?: any[] | null; nominated_id?: number | null; }; export declare namespace UserProfile { } export {};