declare type NotionPageType = { id: string, created_time: string, created_by: { object: string, id: string }, last_edited_time: string, last_edited_by: { object: string, id: string } archived: boolean, cover?: any, icon?: any, properties: any, parent: { type: string, database_id: string }, url: string, children: any[] } declare type NotionPageResponseType = ErrorType & { page?: NotionPageType }