pogo-data-generator
Version:
Pokemon GO project data generator
12 lines (11 loc) • 448 B
TypeScript
import type { AllItems } from '../typings/dataTypes';
import type { NiaMfObj } from '../typings/general';
import type { Options } from '../typings/inputs';
import Masterfile from './Masterfile';
export default class Item extends Masterfile {
options: Options;
parsedItems: AllItems;
static resolveId(value?: string | number, label?: string): number | undefined;
constructor(options: Options);
addItem(object: NiaMfObj): void;
}