@wahaha216/koishi-plugin-jmcomic
Version:
下载JM本子,无需python。支持pdf、zip加密。
81 lines (80 loc) • 1.4 kB
TypeScript
import { Photo } from "./Photo";
export declare class Album {
private id;
private jmId;
private scramble_id;
/**
* 名称
*/
private name;
/**
* 章节列表
*/
private episodes;
/**
* 总页数
*/
private page_count;
/**
* 发布时间
*/
private public_date;
/**
* 更新时间
*/
private update_date;
/**
* 作品
*/
private works;
/**
* 登场人物
*/
private actors;
/**
* 标签
*/
private tags;
/**
* 作者
*/
private authors;
/**
* 描述
*/
private description;
/**
* 点赞数
*/
private likes;
/**
* 观看次数
*/
private views;
/**
* 章节详情列表
*/
private photos;
constructor(html: string);
private extractLables;
getId(): string;
getJMId(): string;
getName(): string;
getScrambleId(): number;
getEpisodes(): {
name: string;
photoId: string;
}[];
addPhoto(photo: Photo): void;
getPhotos(): Photo[];
getPageCount(): number;
getPublicDate(): string;
getUpdateDate(): string;
getWorks(): string[];
getActors(): string[];
getTags(): string[];
getAuthor(): string[];
getDescription(): string;
getLikes(): string;
getViews(): string;
}