UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

14 lines (13 loc) 394 B
import { Base, Type } from "./type"; import { IRandomnessGenerator } from "./IRandomnessGenerator"; import { Random } from "./Random"; /** * @hidden */ export declare class DefaultRandomnessGenerator extends Base implements IRandomnessGenerator { static $t: Type; private a; constructor(a: Random); next(a: number, b: number): number; nextDouble(): number; }