Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | import {
uint8, uint16, uint32,
int8, int16, int32,
float, double,
boolean,
bson,
binary,
string
} from './types';
export const u8 = uint8;
export const ubyte = uint8;
export const u16 = uint16;
export const ushort = uint16;
export const u32 = uint32;
export const uint = uint32;
export const i8 = int8;
export const byte = int8;
export const i16 = int16;
export const short = int16;
export const i32 = int32;
export const int = int32;
export const f = float;
export const d = double;
export const number = double;
export const bool = boolean;
export const s = string;
export const str = string;
export const o = bson;
export const object = bson;
export const b = binary; |