- Add the post author to the return result - Update tests to accommodate for this change - Update the documentation for this change #110 Reviewed-on: #208 Reviewed-by: VylpesTester <tester@vylpes.com> Co-authored-by: Ethan Lane <ethan@vylpes.com> Co-committed-by: Ethan Lane <ethan@vylpes.com>
14 lines
No EOL
315 B
TypeScript
14 lines
No EOL
315 B
TypeScript
export default interface IFetchResult {
|
|
data: {
|
|
archived: boolean,
|
|
author: string,
|
|
downs: number,
|
|
hidden: boolean,
|
|
permalink: string,
|
|
subreddit: string,
|
|
subreddit_subscribers: number,
|
|
title: string,
|
|
ups: number,
|
|
url: string
|
|
}
|
|
} |