/** * The endianness to read numbers with. * * * `LE` - for little-endian * * `BE` - for big-endian */ export declare type Endianness = "BE" | "LE"; /** Asserts that `check` is either string `LE` or string `BE`. */ export declare function isEndianness(check: string): check is Endianness;