acebase-core
Version:
Shared AceBase core components, no need to install manually
10 lines • 353 B
TypeScript
/**
* Sparse/partial array converted to a serializable object. Use `Object.keys(sparseArray)` and `Object.values(sparseArray)` to iterate its indice and/or values
*/
export declare class PartialArray {
[index: number]: any;
constructor(sparseArray?: {
[index: number]: any;
} | any[]);
}
//# sourceMappingURL=partial-array.d.ts.map