Dorian 0d073fa89e Add comprehensive installation and setup documentation
- Add GETTING_STARTED.md with quick start guide and development modes
- Add INSTALL.sh automated installation script
- Add INSTALLATION_CHECKLIST.md, INSTALLATION_SUCCESS.md, and INSTALLATION_SUMMARY.md
- Add QUICK_REFERENCE.md for common commands
- Add SETUP_GUIDE.md with detailed setup instructions
- Update README.md with improved project overview
- Add did-wallet app dependencies and node_modules
2026-01-27 17:18:21 +00:00

13 lines
940 B
TypeScript

export function isU8Arr (input: any): input is Uint8Array
export function bytelength (input: string | Uint8Array): number
export function from (input: Uint8Array | Array | string): Uint8Array
export function write (arr: Uint8Array, str: string, start: number): number
export function toHex (buf: Uint8Array, start?: number, end?: number): string
export function hexLength (str: string): number
export function writeHex (buf: Uint8Array, str: string, start: number, end: number): Uint8Array
export function readUInt32BE (buf: Uint8Array, offset: number): number
export function readUInt16BE (buf: Uint8Array, offset: number): number
export function writeUInt32BE (buf: Uint8Array, value: number, offset: number): number
export function writeUInt16BE (buf: Uint8Array, value: number, offset: number): number
export function copy (source: Uint8Array, target: Uint8Array, targetStart?: number, sourceStart?: number, sourceEnd?: number): number