Files
kiss-flixel/feedback-server/externs/js/lib/IBigInt.hx

16 lines
364 B
Haxe

package js.lib;
typedef IBigInt = {
/**
Returns a string representation of an object.
**/
function toString(?radix:Float):String;
/**
Returns a string representation appropriate to the host environment's current locale.
**/
function toLocaleString():String;
/**
Returns the primitive value of the specified object.
**/
function valueOf():BigInt;
};