mirror of
https://github.com/Wanxp/obsidian-douban.git
synced 2026-04-04 08:38:41 +08:00
10 lines
223 B
TypeScript
10 lines
223 B
TypeScript
import {AggregateRating, Person} from 'schema-dts';
|
|
import DoubanSubject from './DoubanSubject';
|
|
|
|
|
|
export default class DoubanGameSubject extends DoubanSubject {
|
|
aliases:string[];
|
|
developer:string;
|
|
platform:string[];
|
|
}
|