7 lines
168 B
Haxe
7 lines
168 B
Haxe
package js.html;
|
|
|
|
@:native("RandomSource") extern class RandomSource {
|
|
function new();
|
|
function getRandomValues<T>(array:T):T;
|
|
static var prototype : RandomSource;
|
|
} |