Rocky_Mountain_Vending/.pnpm-store/v10/files/19/02daab9ad4f9204b3c1451a04d7dbc0cb7f463c32ee4102b985c2812012366f40abacb4fe6f9e09f7cbd6f7b86150776c49e76bb83e84415a6836906ef4c1d
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

10 lines
544 B
Text

/**
* Unsafely promote a string to a TrustedScriptURL, falling back to strings
* when Trusted Types are not available.
* This is a security-sensitive function; any use of this function
* must go through security review. In particular, it must be assured that the
* provided string will never cause an XSS vulnerability if used in a context
* that will cause a browser to load and execute a resource, e.g. when
* assigning to script.src.
*/
export declare function __unsafeCreateTrustedScriptURL(url: string): TrustedScriptURL | string;