UNPKG

@wahaha216/koishi-plugin-jmcomic

Version:

下载JM本子,无需python。支持pdf、zip加密。

44 lines (43 loc) 986 B
import { JMAlbumAbstract } from "../abstract/JMAlbumAbstract"; import { JMHtmlPhoto } from "./JMHtmlPhoto"; export declare class JMHtmlAlbum extends JMAlbumAbstract { private jmId; private scramble_id; /** * 章节列表 */ private episodes; /** * 总页数 */ private page_count; /** * 发布时间 */ private public_date; /** * 更新时间 */ private update_date; constructor(html: string); private extractLables; getId(): string; getJMId(): string; getName(): string; getScrambleId(): number; getEpisodes(): { name: string; photoId: string; }[]; getPhotos(): JMHtmlPhoto[]; getPageCount(): number; getPublicDate(): string; getUpdateDate(): string; getWorks(): string[]; getActors(): string[]; getTags(): string[]; getAuthor(): string[]; getDescription(): string; getLikes(): string; getTotalViews(): string; }