event-app-api
Version:
Package for easy access to Event App API
22 lines (21 loc) • 421 B
TypeScript
export type Page = {
id?: string;
setting: {
name: string;
subject?: string;
};
type?: string[];
content_html?: string;
content_text?: string;
language: string[];
documents?: string;
};
export type PageInput = {
id?: string;
name: string;
type?: string[];
content_html?: string;
content_text?: string;
language: string[];
documents?: string;
};