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) • 462 B
TypeScript
import type { Reader } from '../Reader';
import { ArrayProperty } from '../Properties/ArrayProperty';
import { StructProperty } from '../Properties/StructProperty';
export declare class ArrayOfStructs {
readonly items: ReadonlyArray<StructProperty>;
static from(array: ArrayProperty, elementsType: string, factory: (reader: Reader) => any): ArrayOfStructs;
constructor(array: ArrayProperty, elementsType: string, factory: (reader: Reader) => any);
}