16 lines
384 B
Haxe
16 lines
384 B
Haxe
package js.lib;
|
|
|
|
@:native("BigInt") extern class BigInt {
|
|
/**
|
|
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;
|
|
} |