elflib
Version:
ELF file reader and writer
11 lines (10 loc) • 455 B
TypeScript
export declare type nybble = 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15;
export declare type uint8 = number;
export declare type uint16 = number;
export declare type uint32 = number;
export declare type uint64 = bigint;
export declare type sint8 = number;
export declare type sint16 = number;
export declare type sint32 = number;
export declare type sint64 = bigint;
export declare type Union<T extends number | bigint> = `${T}`;