mirror of
https://github.com/Wanxp/obsidian-douban.git
synced 2026-04-04 16:48:44 +08:00
12 lines
266 B
TypeScript
12 lines
266 B
TypeScript
import {AggregateRating, Person, WithContext} from 'schema-dts';
|
|
|
|
import DoubanSubject from "./DoubanSubject";
|
|
|
|
export default class DoubanNoteSubject extends DoubanSubject {
|
|
author:string;
|
|
authorUrl:string;
|
|
timePublished:Date;
|
|
image:string;
|
|
content:string;
|
|
}
|