UNPKG

@rbxts/jsnatives

Version:

A TypeScript library for Roblox that provides JavaScript-like native functionality, including Proxy, Object utilities, setTimeout/setInterval, JSON, and more.

9 lines (7 loc) 218 B
/** * Encodes a string to be used in a URL. * @param value - The string to encode. * @returns The encoded string. */ declare const encodeUriComponent: (value: string) => string; export default encodeUriComponent;