function useScriptimport { useScript } from "https://deno.land/x/live@1.107.0/hooks/useScript.ts"; useScript<T extends (...args: any[]) => any>(fn: T, ...params: Parameters<T>): stringHook to create a minified script tag from a function. Type ParametersT extends (...args: any[]) => any Type of the function to be used as script Parametersfn: T The function to be included as a script. ...params: Parameters<T> Parameters to be passed to the function. ReturnsstringThe minified script tag content.