Interface PostAttribution

Attributes an image to a particular post.

interface PostAttribution {
    blog: BlogInfo;
    post: Post;
    type: "post";
    url: string;
}

Properties

Properties

blog: BlogInfo

The blog whose post is attributed.

post: Post

The post to be attributed.

type
url: string

The URL of the post to be attributed.