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

Configure Feed

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

Minor corrections to JS prelude types

+3 -3
+3 -3
compiler-core/templates/prelude.d.mts
··· 48 48 export function toBitArray(segments: Array<BitArray | Uint8Array | number>): BitArray; 49 49 50 50 export function sizedInt( 51 - int: number, 51 + value: number, 52 52 size: number, 53 53 isBigEndian: boolean 54 - ): Uint8Array; 54 + ): Uint8Array | BitArray; 55 55 56 56 export function stringBits(string: string): Uint8Array; 57 57 58 58 export function codepointBits(codepoint: UtfCodepoint): Uint8Array; 59 59 60 60 export function sizedFloat( 61 - float: number, 61 + value: number, 62 62 size: number, 63 63 isBigEndian: boolean 64 64 ): Uint8Array;