Type alias PostInfo

PostInfo: {
    postId: string;
}

Represents a Devvit post in the context of a game.

This is a simplified version of a Reddit Post. For more comprehensive post data, you should use the Reddit API Client.

Type declaration

  • postId: string

    The Reddit post ID (t3_XXXXX format)

Example

const post: PostInfo = { postId: "t3_abc123" };