UNPKG

@zennomi/mangadex-full-api

Version:

A MangaDex api based around the official API.

11 lines (9 loc) 257 B
/** * This class represents the most abstract version of a MangaDex object, containing * only the ID of the object. This is mostly used for instanceOf checks. * @internal */ abstract class IDObject { abstract id: string; } export default IDObject;