nanolith
Version:
Multi-threading in no time with seamless TypeScript support.
23 lines (22 loc) • 464 B
TypeScript
export declare const enum LockStatus {
Unlocked = 0,
Locked = 1
}
export declare enum Bytes {
/**
* **1b** - One byte.
*/
byte = 1,
/**
* **1kb** - One kilobyte.
*/
kilobyte = 1024,
/**
* **1mb** - One megabyte.
*/
megabyte = 1048576
}
export declare const ENCODER: TextEncoder;
export declare const DECODER: TextDecoder;
export declare const NULL: null;
export declare const NULL_ENCODED: Uint8Array;