UNPKG

sc4

Version:

A command line utility for automating SimCity 4 modding tasks & modifying savegames

22 lines (21 loc) 564 B
import { Savegame } from 'sc4/core'; import type { Logger } from 'sc4/types'; type folder = string; type PlopAllLotsOptions = { pattern?: string | string[]; directory?: folder; installation?: folder; plugins?: folder; logger?: Logger; random?: number | boolean | string; city: string; clear?: boolean; bbox?: number[]; lots?: boolean; props?: boolean; save?: boolean; backup?: Function; output?: string; }; export default function plopAllLots(opts: PlopAllLotsOptions): Promise<Savegame | false>; export {};