UNPKG

haravan-client

Version:
23 lines (22 loc) 612 B
export interface IHaravanBlog { commentable: string; created_at: string; feedburner: unknown; feedburner_location: unknown; handle: string; id: number; tags: string; template_suffix: string; title: string; updated_at: string; } export declare function postHaravanBlog({ accessToken, blog, delay }: { accessToken: string; blog: Partial<IHaravanBlog>; delay?: number; }): Promise<IHaravanBlog>; export declare function getHaravanBlogs({ accessToken, query, delay }: { accessToken: string; query?: string; delay?: number; }): Promise<IHaravanBlog[]>;