* Writes `value` to `buf` at the specified `offset` as little-endian. The `value` must be a JavaScript number. Behavior is undefined when `value` is anything * other than a JavaScript number. * * ```js * import { Buffer } from 'buffer'; * * const buf = Buffer.allocUnsaf
(value: number, offset?: number)
| 1140 | * @return `offset` plus the number of bytes written. |
| 1141 | */ |
| 1142 | writeDoubleLE(value: number, offset?: number): number; |
| 1143 | /** |
| 1144 | * Writes `value` to `buf` at the specified `offset` as big-endian. The `value` must be a JavaScript number. Behavior is undefined when `value` is anything |
| 1145 | * other than a JavaScript number. |