8 wrappers generated from
top-level JavaScript globals.
Every entry takes a single object literal whose keys mirror the original
parameter names, plus an optional prompt: string for the LLM path.
Method First signature decodeURIdecodeURI (input: { encodedURI: string; prompt ?: string }): Promise < string >
decodeURIComponentdecodeURIComponent (input: { encodedURIComponent: string; prompt ?: string }): Promise < string >
encodeURIencodeURI (input: { uri: string; prompt ?: string }): Promise < string >
encodeURIComponentencodeURIComponent (input: { uriComponent: string | number | boolean; prompt ?: string }): Promise < string >
isFiniteisFinite (input: { number: number; prompt ?: string }): Promise < boolean >
isNaNisNaN (input: { number: number; prompt ?: string }): Promise < boolean >
parseFloatparseFloat (input: { string: string; prompt ?: string }): Promise < number >
parseIntparseInt (input: { string: string; radix ?: number; prompt ?: string }): Promise < number >