mirror of
https://github.com/Wanxp/obsidian-douban.git
synced 2026-04-04 08:38:41 +08:00
17 lines
461 B
TypeScript
17 lines
461 B
TypeScript
import DoubanSubject from "douban/model/DoubanSubject";
|
|
import DoubanAbstractLoadHandler from "./DoubanAbstractLoadHandler";
|
|
|
|
export default class DoubanOtherLoadHandler extends DoubanAbstractLoadHandler<DoubanSubject> {
|
|
getSubject(): DoubanSubject {
|
|
throw new Error("Method not implemented.");
|
|
}
|
|
getTextResult(): string {
|
|
throw new Error("Method not implemented.");
|
|
}
|
|
getType(): string {
|
|
return undefined;
|
|
}
|
|
|
|
|
|
|
|
} |