sc4
Version:
A command line utility for automating SimCity 4 modding tasks & modifying savegames
16 lines (15 loc) • 450 B
TypeScript
declare const _default: {
ok: (...msg: any[]) => void;
error: (...msg: any[]) => void;
warn: (...msg: any[]) => void;
info: (...msg: any[]) => void;
log: (...msg: any[]) => void;
progress: {
start(text: string): void;
update: (text: string) => undefined;
succeed: (text?: string) => void;
fail: (text?: string) => void;
warn: (text?: string) => void;
};
};
export default _default;