feat: support author url and avatar for json feed
This commit is contained in:
parent
f4b05dbe34
commit
288788c37f
|
|
@ -35,7 +35,13 @@ export type DataItem = {
|
|||
pubDate?: number | string | Date;
|
||||
link?: string;
|
||||
category?: string[];
|
||||
author?: string | { name: string }[];
|
||||
author?:
|
||||
| string
|
||||
| {
|
||||
name: string;
|
||||
url?: string;
|
||||
avatar?: string;
|
||||
}[];
|
||||
doi?: string;
|
||||
guid?: string;
|
||||
id?: string;
|
||||
|
|
|
|||
Loading…
Reference in New Issue