* Writes `value` to `buf` at the specified `offset` as big-endian. * * `value` is interpreted and written as a two's complement signed integer. * * ```js * import { Buffer } from 'buffer'; * * const buf = Buffer.allocUnsafe(8); * * buf.writeBigInt64BE(0x0
(value: bigint, offset?: number)
| 522 | * @return `offset` plus the number of bytes written. |
| 523 | */ |
| 524 | writeBigInt64BE(value: bigint, offset?: number): number; |
| 525 | /** |
| 526 | * @alias Buffer.writeBigUInt64BE |
| 527 | */ |