pogo-data-generator
Version:
Pokemon GO project data generator
12 lines (11 loc) • 524 B
TypeScript
import type { LocationCardSettings } from 'pogo-masterfile-types';
import type { AllLocationCards } from '../typings/dataTypes';
import type { Options } from '../typings/inputs';
import Masterfile from './Masterfile';
export default class LocationCards extends Masterfile {
options: Options;
parsedLocationCards: AllLocationCards;
static resolveId(value?: string | number, label?: string): number | undefined;
constructor(options: Options);
addLocationCard(object: LocationCardSettings['data']): void;
}