* Writes `value` to `buf` at the specified `offset` as little-endian. * * `value` is interpreted and written as a two's complement signed integer. * * ```js * import { Buffer } from 'buffer'; * * const buf = Buffer.allocUnsafe(8); * * buf.writeBigInt64LE(
(value: bigint, offset?: number)
| 546 | * @return `offset` plus the number of bytes written. |
| 547 | */ |
| 548 | writeBigInt64LE(value: bigint, offset?: number): number; |
| 549 | /** |
| 550 | * @alias Buffer.writeBigUInt64LE |
| 551 | */ |