Frontend uudelleenrakennettu: Astro-komponentit, Wasm pääsäikeessä, ei Workeria
Vanha frontend siirretty temp/. Uusi rakenne: - StatusBar.astro, Terminal.astro, Editor.astro, Guide.astro - global.css erillinen - Wasm pääsäikeessä (ei Worker — yksinkertainen, debugattava) - Tab-completion, dropdown, projektikortti, Monaco, GUIDE.md - Ei tokenisointia eikä koodilaboratoriota Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
26
network-poc/frontend/node_modules/ohash/dist/index.d.mts
generated
vendored
Normal file
26
network-poc/frontend/node_modules/ohash/dist/index.d.mts
generated
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
export { digest } from 'ohash/crypto';
|
||||
export { i as isEqual } from './shared/ohash.CMR0vuBX.mjs';
|
||||
|
||||
/**
|
||||
* Serializes any input value into a string for hashing.
|
||||
*
|
||||
* This method uses best efforts to generate stable serialized values.
|
||||
* However, it is not designed for security purposes.
|
||||
* Keep in mind that there is always a chance of intentional collisions caused by user input.
|
||||
*
|
||||
* @param input any value to serialize
|
||||
* @return {string} serialized string value
|
||||
*/
|
||||
declare function serialize(input: any): string;
|
||||
|
||||
/**
|
||||
* Hashes any JS value into a string.
|
||||
*
|
||||
* The input is first serialized and then hashed.
|
||||
*
|
||||
* @param input any value to serialize
|
||||
* @return {string} hash value
|
||||
*/
|
||||
declare function hash(input: any): string;
|
||||
|
||||
export { hash, serialize };
|
||||
Reference in New Issue
Block a user