- 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
10 lines
672 B
TypeScript
10 lines
672 B
TypeScript
import { KnownEncodingInput, KnownEncodingOutput } from './encoding'
|
|
import { BufferFormat, ViewFormat, UTF8Format } from './formats'
|
|
|
|
export const utf8: UTF8Format<KnownEncodingInput<'utf8'>, KnownEncodingOutput<'utf8'>>
|
|
export const json: UTF8Format<KnownEncodingInput<'json'>, KnownEncodingOutput<'json'>>
|
|
export const buffer: BufferFormat<KnownEncodingInput<'buffer'>, KnownEncodingOutput<'buffer'>>
|
|
export const view: ViewFormat<KnownEncodingInput<'view'>, KnownEncodingOutput<'view'>>
|
|
export const hex: BufferFormat<KnownEncodingInput<'hex'>, KnownEncodingOutput<'hex'>>
|
|
export const base64: BufferFormat<KnownEncodingInput<'base64'>, KnownEncodingOutput<'base64'>>
|