//#region packages/basic/string/toFunctionParam.d.ts type ObjAny = Record; /** * 优化的toFunctionParam函数 - 修复版本 */ declare function toFunctionParam(str: string | Function, externalParams?: ObjAny | (() => ObjAny)): Function | undefined; /** * 增强版,支持更多选项(修复版本) */ declare function toFunctionParamOptions(str: string | Function, externalParams?: ObjAny | (() => ObjAny), options?: { useClosure?: boolean; strictMode?: boolean; context?: ObjAny; paramDefaults?: Record; bindThis?: boolean; name?: string; autoRebind?: boolean; autoFirst?: boolean; useProxy?: boolean; }): Function | undefined; //#endregion export { toFunctionParamOptions as n, toFunctionParam as t };