UNPKG

xcom2charpool

Version:

Library for reading, manipulating, and managing XCOM 2 character pool binary files, supporting both browser and Node.js environments.

9 lines (8 loc) 286 B
/** * Error type for codec failures that carries the full property path for diagnostics. */ export declare class CodecError extends Error { readonly path: string; readonly cause?: Error | undefined; constructor(message: string, path: string, cause?: Error | undefined); }