mirror of
https://github.com/Wanxp/obsidian-douban.git
synced 2026-04-04 08:38:41 +08:00
11 lines
266 B
TypeScript
11 lines
266 B
TypeScript
import {AggregateRating, Person, WithContext} from 'schema-dts';
|
|
|
|
import DoubanSubject from "./DoubanSubject";
|
|
|
|
export default class DoubanMovieSubject extends DoubanSubject {
|
|
author:Person[];
|
|
aggregateRating:AggregateRating;
|
|
datePublished:Date;
|
|
image:string
|
|
}
|