Fork of daniellemaywood.uk/gleam — Wasm codegen work
2

Configure Feed

Select the types of activity you want to include in your feed.

fix(prelude-ts): mark bitSize and bitOffset fields in BitArray$BitArray as optional

+10 -2
+8
CHANGELOG.md
··· 1 1 # Changelog 2 2 3 + ## Unreleased 4 + 5 + ### Bug fixes 6 + 7 + - Marked the `bitSize` and `bitOffset` fields of `BitArray$BitArray` TypeScript 8 + definition as optional. 9 + ([acandoo](https://github.com/acandoo)) 10 + 3 11 ## v1.15.0-rc1 - 2026-03-04 4 12 5 13 ### Compiler
+2 -2
compiler-core/templates/prelude.d.mts
··· 69 69 } 70 70 export function BitArray$BitArray( 71 71 buffer: Uint8Array, 72 - bitSize: number, 73 - bitOffset: number, 72 + bitSize?: number, 73 + bitOffset?: number, 74 74 ): BitArray; 75 75 export function BitArray$isBitArray(value: any): value is BitArray; 76 76 export function BitArray$BitArray$data(value: BitArray): DataView;