igniteui-react-core
Version:
Ignite UI React Core.
15 lines (14 loc) • 423 B
TypeScript
import { Base, Type } from "./type";
import { IRandomnessSource } from "./IRandomnessSource";
/**
* @hidden
*/
export declare class TestRandomness extends Base {
static $t: Type;
constructor();
private static b;
static get instance(): TestRandomness;
private _testRandomnessSource;
get testRandomnessSource(): IRandomnessSource;
set testRandomnessSource(a: IRandomnessSource);
}