aboutsummaryrefslogtreecommitdiffstats
path: root/vanilla/node_modules/@exodus/bytes/index.d.ts
diff options
context:
space:
mode:
authorAdam Mathes <adam@adammathes.com>2026-02-14 14:46:37 -0800
committerAdam Mathes <adam@adammathes.com>2026-02-14 14:46:37 -0800
commitafa87af01c79a9baa539f2992d32154d2a4739bd (patch)
tree92c7416db734270a2fee1d72ee9cc119379ff8e1 /vanilla/node_modules/@exodus/bytes/index.d.ts
parent3b927e84d200402281f68181cd4253bc77e5528d (diff)
downloadneko-afa87af01c79a9baa539f2992d32154d2a4739bd.tar.gz
neko-afa87af01c79a9baa539f2992d32154d2a4739bd.tar.bz2
neko-afa87af01c79a9baa539f2992d32154d2a4739bd.zip
task: delete vanilla js prototype\n\n- Removed vanilla/ directory and web/dist/vanilla directory\n- Updated Makefile, Dockerfile, and CI workflow to remove vanilla references\n- Cleaned up web/web.go to remove vanilla embed and routes\n- Verified build and tests pass\n\nCloses NK-2tcnmq
Diffstat (limited to 'vanilla/node_modules/@exodus/bytes/index.d.ts')
-rw-r--r--vanilla/node_modules/@exodus/bytes/index.d.ts43
1 files changed, 0 insertions, 43 deletions
diff --git a/vanilla/node_modules/@exodus/bytes/index.d.ts b/vanilla/node_modules/@exodus/bytes/index.d.ts
deleted file mode 100644
index c679459..0000000
--- a/vanilla/node_modules/@exodus/bytes/index.d.ts
+++ /dev/null
@@ -1,43 +0,0 @@
-/**
- * ### The `@exodus/bytes` package consists of submodules, there is no single export.
- * Import specific submodules instead.
- *
- * See [README](https://github.com/ExodusOSS/bytes/blob/main/README.md).
- *
- * Example:
- * ```js
- * import { fromHex, toHex } from '@exodus/bytes/hex.js'
- * import { fromBase64, toBase64, fromBase64url, toBase64url, fromBase64any } from '@exodus/bytes/base64.js'
- * import { fromBase32, toBase32, fromBase32hex, toBase32hex } from '@exodus/bytes/base32.js'
- * import { fromBase58, toBase58, fromBase58xrp, toBase58xrp } from '@exodus/bytes/base58.js'
- * import { fromBech32, toBech32, fromBech32m, toBech32m, getPrefix } from '@exodus/bytes/bech32.js'
- * import { fromBigInt, toBigInt } from '@exodus/bytes/bigint.js'
- *
- * import { utf8fromString, utf8toString, utf8fromStringLoose, utf8toStringLoose } from '@exodus/bytes/utf8.js'
- * import { utf16fromString, utf16toString, utf16fromStringLoose, utf16toStringLoose } from '@exodus/bytes/utf16.js'
- * import {
- * createSinglebyteDecoder, createSinglebyteEncoder,
- * windows1252toString, windows1252fromString,
- * latin1toString, latin1fromString } from '@exodus/bytes/single-byte.js'
- * import { createMultibyteDecoder, createMultibyteEncoder } from '@exodus/bytes/multi-byte.js'
- *
- * import {
- * fromBase58check, toBase58check,
- * fromBase58checkSync, toBase58checkSync,
- * makeBase58check } from '@exodus/bytes/base58check.js'
- * import { fromWifString, toWifString, fromWifStringSync, toWifStringSync } from '@exodus/bytes/wif.js'
- *
- * // All encodings from the WHATWG Encoding spec
- * import { TextDecoder, TextEncoder, TextDecoderStream, TextEncoderStream } from '@exodus/bytes/encoding.js'
- * import { getBOMEncoding, legacyHookDecode, labelToName, normalizeEncoding } from '@exodus/bytes/encoding.js'
- *
- * // Omits legacy multi-byte decoders to save bundle size
- * import { TextDecoder, TextEncoder, TextDecoderStream, TextEncoderStream } from '@exodus/bytes/encoding-lite.js'
- * import { getBOMEncoding, legacyHookDecode, labelToName, normalizeEncoding } from '@exodus/bytes/encoding-lite.js'
- *
- * // In browser bundles, uses built-in TextDecoder / TextEncoder to save bundle size
- * import { TextDecoder, TextEncoder, TextDecoderStream, TextEncoderStream } from '@exodus/bytes/encoding-browser.js'
- * import { getBOMEncoding, legacyHookDecode, labelToName, normalizeEncoding } from '@exodus/bytes/encoding-browser.js'
- * ```
- */
-declare module '@exodus/bytes' {}