UNPKG

@hubs101/js-api-skd-client

Version:
39 lines (38 loc) 823 B
export type Page = { id?: string; name: string; slug: string; type?: string; content_html?: string; content_text?: string; language: string; documents?: string; content_structure: string; event: string; dynamic: number; auto_created: number; tags: string[]; setting: PageSetting; created_at: string; updated_at: string; updated_by: string; published: boolean; }; export interface PageSetting { name: string; subject: string; } export type PageInput = { name: string; language: string[]; type?: string; content_html?: string; documents?: string; content_structure?: string; event?: string; dynamic?: boolean; tags?: string[]; setting?: PageSetting; content_text?: string; published?: boolean; };