* Writes `value` to `buf` at the specified `offset` as little-endian. Behavior is * undefined when `value` is anything other than a JavaScript number. * * ```js * import { Buffer } from 'buffer'; * * const buf = Buffer.allocUnsafe(4); * * buf.writeFloatLE(0xca
(value: number, offset?: number)
| 1102 | * @return `offset` plus the number of bytes written. |
| 1103 | */ |
| 1104 | writeFloatLE(value: number, offset?: number): number; |
| 1105 | /** |
| 1106 | * Writes `value` to `buf` at the specified `offset` as big-endian. Behavior is |
| 1107 | * undefined when `value` is anything other than a JavaScript number. |