osrs-tools
Version:
A comprehensive TypeScript library for Old School RuneScape (OSRS) data and utilities, including quest data, skill requirements, and game item information
8 lines • 942 B
TypeScript
import { CollectionLogCategory, CollectionLogDataset, CollectionLogEntry, CollectionLogItem, CollectionLogProgressSummary } from "./CollectionLog.model";
export declare const COLLECTION_LOG_DATASET: CollectionLogDataset;
export declare function getCollectionLogEntries(dataset?: CollectionLogDataset): CollectionLogEntry[];
export declare function getCollectionLogEntryById(entryId: string, dataset?: CollectionLogDataset): CollectionLogEntry | undefined;
export declare function getCollectionLogEntriesByCategory(category: CollectionLogCategory, dataset?: CollectionLogDataset): CollectionLogEntry[];
export declare function getMissingCollectionLogItems(obtainedItemIds: readonly string[], dataset?: CollectionLogDataset): CollectionLogItem[];
export declare function calculateCollectionLogProgress(obtainedItemIds: readonly string[], dataset?: CollectionLogDataset): CollectionLogProgressSummary;
//# sourceMappingURL=CollectionLog.d.ts.map