@tiktikimelbo7/extensions
Version:
Nodejs library that provides high-level APIs for obtaining information on various entertainment media such as books, movies, comic books, anime, manga, and so on.
57 lines • 1.48 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.GetComicsComicsObject = exports.LibgenBookObject = void 0;
class LibgenBookObject {
constructor() {
this.title = '';
this.authors = [];
this.publisher = '';
this.year = '';
this.edition = '';
this.volume = '';
this.series = '';
this.isbn = [];
this.link = '';
this.id = '';
this.language = '';
this.format = '';
this.size = '';
this.pages = '';
this.image = '';
this.description = '';
this.tableOfContents = '';
this.topic = '';
this.hashes = new HashesObject();
}
}
exports.LibgenBookObject = LibgenBookObject;
class HashesObject {
constructor() {
this.AICH = '';
this.CRC32 = '';
this.eDonkey = '';
this.MD5 = '';
this.SHA1 = '';
this.SHA256 = [];
this.TTH = '';
}
}
class GetComicsComicsObject {
constructor() {
this.image = '';
this.title = '';
this.year = '';
this.size = '';
this.excerpt = '';
this.description = '';
this.download = '';
this.category = '';
this.ufile = '';
this.mega = '';
this.mediafire = '';
this.zippyshare = '';
this.readOnline = '';
}
}
exports.GetComicsComicsObject = GetComicsComicsObject;
//# sourceMappingURL=type-objects.js.map