@@ -1004,14 +1004,14 @@ namespace ts {
1004
1004
writeFloatBE ( value : number , offset : number ) : number ;
1005
1005
writeDoubleLE ( value : number , offset : number ) : number ;
1006
1006
writeDoubleBE ( value : number , offset : number ) : number ;
1007
- readBigUInt64BE ( offset ?: number ) : bigint ;
1008
- readBigUInt64LE ( offset ?: number ) : bigint ;
1009
- readBigInt64BE ( offset ?: number ) : bigint ;
1010
- readBigInt64LE ( offset ?: number ) : bigint ;
1011
- writeBigInt64BE ( value : bigint , offset ?: number ) : number ;
1012
- writeBigInt64LE ( value : bigint , offset ?: number ) : number ;
1013
- writeBigUInt64BE ( value : bigint , offset ?: number ) : number ;
1014
- writeBigUInt64LE ( value : bigint , offset ?: number ) : number ;
1007
+ readBigUInt64BE ? ( offset ?: number ) : bigint ;
1008
+ readBigUInt64LE ? ( offset ?: number ) : bigint ;
1009
+ readBigInt64BE ? ( offset ?: number ) : bigint ;
1010
+ readBigInt64LE ? ( offset ?: number ) : bigint ;
1011
+ writeBigInt64BE ? ( value : bigint , offset ?: number ) : number ;
1012
+ writeBigInt64LE ? ( value : bigint , offset ?: number ) : number ;
1013
+ writeBigUInt64BE ? ( value : bigint , offset ?: number ) : number ;
1014
+ writeBigUInt64LE ? ( value : bigint , offset ?: number ) : number ;
1015
1015
fill ( value : string | Uint8Array | number , offset ?: number , end ?: number , encoding ?: BufferEncoding ) : this;
1016
1016
indexOf ( value : string | number | Uint8Array , byteOffset ?: number , encoding ?: BufferEncoding ) : number ;
1017
1017
lastIndexOf ( value : string | number | Uint8Array , byteOffset ?: number , encoding ?: BufferEncoding ) : number ;
0 commit comments