Skip to content

Latest commit

 

History

History
70 lines (42 loc) · 1.29 KB

PaginatedList.md

File metadata and controls

70 lines (42 loc) · 1.29 KB

@jitl/notion-api / Exports / PaginatedList

Interface: PaginatedList<T>

A page of results from the Notion API.

source

export interface PaginatedList<T> {
    object: 'list';
    results: T[];
    next_cursor: string | null;
    has_more: boolean;
}

Type parameters

Name
T

Table of contents

Properties

Properties

object

object: "list"

Defined in

lib/notion-api.ts:91


results

results: T[]

Defined in

lib/notion-api.ts:92


next_cursor

next_cursor: null | string

Defined in

lib/notion-api.ts:93


has_more

has_more: boolean

Defined in

lib/notion-api.ts:94