UNPKG

sandai-react

Version:

React components and utilities for the Sandai 3D AI Characters.

8 lines 268 B
/** * Pick an item from the given array by probability evaluation functions. */ export declare function pickByProbability<T>(array: T[], evaluators: { func: (value: T) => number; weight: number; }[]): T | null; //# sourceMappingURL=pickByProbability.d.ts.map