haravan-client
Version:
### Haravan API
16 lines (15 loc) • 379 B
TypeScript
export interface IHaravanCollection {
collection_id: number;
created_at: string;
featured: boolean;
id: number;
position: number;
product_id: number;
sort_value: string;
updated_at: string;
}
export declare function getHaravanCollections(param: {
accessToken: string;
query?: string;
delay?: number;
}): Promise<IHaravanCollection[]>;