Interface FoundStories

Contains a list of stories found by a search.

interface FoundStories {
    @type: "foundStories";
    next_offset: string;
    stories: Story[];
    total_count: number;
}

Properties

@type: "foundStories"
next_offset: string

The offset for the next request. If empty, then there are no more results.

stories: Story[]

List of stories.

total_count: number

Approximate total number of stories found.