sc4
Version:
A command line utility for automating SimCity 4 modding tasks & modifying savegames
10 lines (9 loc) • 314 B
TypeScript
import type { TGILiteral } from 'sc4/types';
type DbpfExtractCommandOptions = {
yaml?: boolean;
force?: boolean;
output?: string;
tgi?: boolean;
} & Partial<TGILiteral>;
export declare function dbpfExtract(patterns: string | string[], options: DbpfExtractCommandOptions): Promise<void>;
export {};