@isdk/ai-tool 0.2.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/chunk-TOUPOZHH.mjs +1 -0
- package/dist/funcs.d.mts +1 -1
- package/dist/funcs.d.ts +1 -1
- package/dist/funcs.js +1 -1
- package/dist/funcs.mjs +1 -1
- package/dist/{index-nP9lSU6E.d.mts → index-DUEs7T8M.d.mts} +2 -2
- package/dist/{index-nP9lSU6E.d.ts → index-DUEs7T8M.d.ts} +2 -2
- package/dist/index.d.mts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/docs/README.md +5 -3
- package/docs/_media/CONTRIBUTING.md +18 -0
- package/docs/_media/LICENSE-MIT +22 -0
- package/docs/classes/AbortError.md +108 -129
- package/docs/classes/AlreadyExistsError.md +105 -126
- package/docs/classes/BaseError.md +112 -125
- package/docs/classes/CancelableAbility.md +136 -188
- package/docs/classes/ClientTools.md +1005 -1107
- package/docs/classes/CommonError.md +115 -136
- package/docs/classes/ConfigFile.md +150 -163
- package/docs/classes/EventClient.md +1128 -1282
- package/docs/classes/EventServer.md +1165 -1303
- package/docs/classes/EventToolFunc.md +958 -1028
- package/docs/classes/FStringPromptTemplate.md +352 -438
- package/docs/classes/FewShotPromptTemplate.md +364 -464
- package/docs/classes/GolangPromptTemplate.md +352 -438
- package/docs/classes/HFEnvironment.md +53 -79
- package/docs/classes/HFInterpreter.md +20 -377
- package/docs/classes/HFTemplate.md +21 -33
- package/docs/classes/HfPromptTemplate.md +352 -438
- package/docs/classes/IntSet.md +67 -100
- package/docs/classes/NotFoundError.md +105 -126
- package/docs/classes/NotImplementationError.md +105 -126
- package/docs/classes/PromptExampleSelector.md +58 -70
- package/docs/classes/PromptTemplate.md +338 -422
- package/docs/classes/ReadableStreamError.md +108 -129
- package/docs/classes/ResClientTools.md +916 -1026
- package/docs/classes/ResServerTools.md +919 -1026
- package/docs/classes/SSEChannel.md +93 -112
- package/docs/classes/Semaphore.md +44 -140
- package/docs/classes/ServerTools.md +981 -1072
- package/docs/classes/TaskAbortController.md +46 -66
- package/docs/classes/ToolFunc.md +840 -910
- package/docs/enumerations/AsyncFeatureBits.md +37 -0
- package/docs/enumerations/AsyncFeatures.md +37 -0
- package/docs/enumerations/ErrorCode.md +217 -0
- package/docs/enumerations/XXHashAlgorithm.md +27 -0
- package/docs/functions/AIArgProcessor.md +27 -0
- package/docs/functions/AIStream.md +50 -0
- package/docs/functions/ChoiceArgProcessor.md +27 -0
- package/docs/functions/RateLimit.md +33 -0
- package/docs/functions/TemplateArgProcessor.md +27 -0
- package/docs/functions/backendEventable.md +23 -0
- package/docs/functions/canonicalize.md +21 -0
- package/docs/functions/countRegexMatches.md +33 -0
- package/docs/functions/createAbilityInjector.md +87 -0
- package/docs/functions/createCallbacksTransformer.md +49 -0
- package/docs/functions/createEmptyReadableStream.md +23 -0
- package/docs/functions/createEndWithRepetitionDetector.md +29 -0
- package/docs/functions/createError.md +35 -0
- package/docs/functions/createEventStreamTransformer.md +33 -0
- package/docs/functions/createHfValueFunc.md +29 -0
- package/docs/functions/createLRUCache.md +23 -0
- package/docs/functions/dateToText.md +23 -0
- package/docs/functions/expandEnv.md +40 -0
- package/docs/functions/expandObjEnv.md +54 -0
- package/docs/functions/extNameLevel.md +43 -0
- package/docs/functions/fileIsExists.md +34 -0
- package/docs/functions/filenameReservedRegex.md +22 -0
- package/docs/functions/filterValidFnScope.md +21 -0
- package/docs/functions/findPort.md +23 -0
- package/docs/functions/formatISO.md +71 -0
- package/docs/functions/getAllEnumKeys.md +31 -0
- package/docs/functions/getConfigFileNames.md +23 -0
- package/docs/functions/getConfigs.md +23 -0
- package/docs/functions/getKeysPath.md +38 -0
- package/docs/functions/getMultiLevelExtname.md +31 -0
- package/docs/functions/getPackageDir.md +39 -0
- package/docs/functions/getRealFilepath.md +34 -0
- package/docs/functions/getResponseErrorReadableStream.md +21 -0
- package/docs/functions/hfParse.md +24 -0
- package/docs/functions/hfTokenize.md +25 -0
- package/docs/functions/interpolateEnv.md +25 -0
- package/docs/functions/interpolateFString.md +27 -0
- package/docs/functions/interpolateGolangTemplate.md +31 -0
- package/docs/functions/isModelNameMatched.md +45 -0
- package/docs/functions/isValidFilename.md +38 -0
- package/docs/functions/isValidFilepath.md +27 -0
- package/docs/functions/isWebStream.md +21 -0
- package/docs/functions/jsonFilterToWhere.md +45 -0
- package/docs/functions/jsonToMarkdownStr.md +31 -0
- package/docs/functions/loadFileFromPaths.md +54 -0
- package/docs/functions/loadTextFromPaths.md +29 -0
- package/docs/functions/lrucache.md +29 -0
- package/docs/functions/makeToolFuncCancelable.md +23 -0
- package/docs/functions/matchUrlProtocol.md +48 -0
- package/docs/functions/memoize.md +27 -0
- package/docs/functions/messagesToText.md +21 -0
- package/docs/functions/paramsSizeToScaleStr.md +32 -0
- package/docs/functions/parseCommand.md +33 -0
- package/docs/functions/parseDateFormat.md +360 -0
- package/docs/functions/parseFString.md +26 -0
- package/docs/functions/parseISO.md +72 -0
- package/docs/functions/parseJsJson.md +38 -0
- package/docs/functions/parseObjectArgInfo.md +27 -0
- package/docs/functions/parseObjectArgumentInfos.md +25 -0
- package/docs/functions/parseObjectArguments.md +68 -0
- package/docs/functions/parseObjectArgumentsAsArgInfos.md +42 -0
- package/docs/functions/parseYaml.md +21 -0
- package/docs/functions/quoteStr.md +21 -0
- package/docs/functions/reControlCharsRegex.md +21 -0
- package/docs/functions/readFilenamesRecursiveSync.md +47 -0
- package/docs/functions/readableFromAsyncIterable.md +28 -0
- package/docs/functions/registerCoreTools.md +17 -0
- package/docs/functions/registerYamlTag.md +21 -0
- package/docs/functions/sanitizeFilename.md +37 -0
- package/docs/functions/sanitizeFilepath.md +31 -0
- package/docs/functions/saveConfigFile.md +25 -0
- package/docs/functions/scaleStrToParamsSize.md +27 -0
- package/docs/functions/simplifyObjectArguments.md +21 -0
- package/docs/functions/sortedValues.md +25 -0
- package/docs/functions/splitSentence.md +37 -0
- package/docs/functions/stringifyYaml.md +49 -0
- package/docs/functions/textToDate.md +23 -0
- package/docs/functions/throwError.md +37 -0
- package/docs/functions/toDate.md +76 -0
- package/docs/functions/toDateTime.md +21 -0
- package/docs/functions/trimStartOfStreamHelper.md +41 -0
- package/docs/functions/truncTo.md +47 -0
- package/docs/functions/uuid.md +23 -0
- package/docs/functions/uuidParse.md +21 -0
- package/docs/functions/uuidStringify.md +23 -0
- package/docs/functions/uuidValidate.md +21 -0
- package/docs/functions/uuidVersion.md +21 -0
- package/docs/functions/uuidv1.md +47 -0
- package/docs/functions/uuidv4.md +47 -0
- package/docs/functions/uuidv5.md +51 -0
- package/docs/functions/wait.md +21 -0
- package/docs/functions/xxhash.md +25 -0
- package/docs/functions/xxhash32.md +23 -0
- package/docs/functions/xxhash64.md +23 -0
- package/docs/functions/xxhashAsStr.md +25 -0
- package/docs/globals.md +236 -0
- package/docs/interfaces/AIChatAssistantMessageParam.md +29 -38
- package/docs/interfaces/AIChatContentPartImage.md +11 -16
- package/docs/interfaces/AIChatContentPartText.md +9 -12
- package/docs/interfaces/AIChatMessageParamBase.md +12 -19
- package/docs/interfaces/AIChatMessageToolCall.md +18 -21
- package/docs/interfaces/AIChatSystemMessageParam.md +16 -22
- package/docs/interfaces/AIChatToolMessageParam.md +19 -26
- package/docs/interfaces/AIChatUserMessageParam.md +32 -42
- package/docs/interfaces/AIChoiceConfig.md +31 -39
- package/docs/interfaces/AIResult.md +26 -33
- package/docs/interfaces/AIStreamParser.md +24 -18
- package/docs/interfaces/AIStreamParserOptions.md +8 -10
- package/docs/interfaces/BaseFunc.md +55 -75
- package/docs/interfaces/BaseFuncItem.md +43 -61
- package/docs/interfaces/CancelableAbilityOptions.md +43 -54
- package/docs/interfaces/ClientFuncItem.md +66 -83
- package/docs/interfaces/DotenvExpandOptions.md +15 -19
- package/docs/interfaces/DotenvExpandOutput.md +11 -14
- package/docs/interfaces/DotenvParseInput.md +6 -2
- package/docs/interfaces/DotenvParseOutput.md +6 -2
- package/docs/interfaces/DotenvPopulateInput.md +6 -2
- package/docs/interfaces/EventClientFuncParams.md +22 -33
- package/docs/interfaces/EventServerFuncParams.md +27 -35
- package/docs/interfaces/FewShotPromptTemplateOptions.md +58 -74
- package/docs/interfaces/FuncItem.md +53 -70
- package/docs/interfaces/FuncParam.md +29 -36
- package/docs/interfaces/FuncParams.md +6 -2
- package/docs/interfaces/Funcs.md +6 -2
- package/docs/interfaces/JsonFilter.md +6 -2
- package/docs/interfaces/ParseObjectArgumentOptions.md +23 -29
- package/docs/interfaces/PromptExampleSelectorOptions.md +13 -16
- package/docs/interfaces/PromptTemplateOptions.md +31 -40
- package/docs/interfaces/RemoteFuncItem.md +64 -82
- package/docs/interfaces/ResClientFuncParams.md +14 -19
- package/docs/interfaces/ResServerFuncParams.md +28 -36
- package/docs/interfaces/SanitizeFilenameOptions.md +11 -14
- package/docs/interfaces/ServerFuncItem.md +70 -88
- package/docs/interfaces/ServerFuncParams.md +15 -20
- package/docs/interfaces/StreamCallbacksAndOptions.md +36 -65
- package/docs/interfaces/TaskAbortControllers.md +6 -2
- package/docs/interfaces/TaskPromise.md +48 -61
- package/docs/interfaces/ToolFuncPackage.md +18 -32
- package/docs/type-aliases/AIChatContentPart.md +13 -0
- package/docs/type-aliases/AIChatMessageParam.md +13 -0
- package/docs/type-aliases/AIChatRole.md +13 -0
- package/docs/type-aliases/AIMessageType.md +13 -0
- package/docs/type-aliases/AIModelNameRule.md +13 -0
- package/docs/type-aliases/AIModelNameRuleFn.md +21 -0
- package/docs/type-aliases/AIModelNameRules.md +13 -0
- package/docs/type-aliases/AITextGenerationFinishReason.md +13 -0
- package/docs/type-aliases/ActionName.md +13 -0
- package/docs/type-aliases/AsyncTaskId.md +13 -0
- package/docs/type-aliases/EventErrorListenerFn.md +27 -0
- package/docs/type-aliases/EventListenerFn.md +25 -0
- package/docs/type-aliases/FStringPromptTemplateNode.md +16 -0
- package/docs/type-aliases/FuncParamType.md +13 -0
- package/docs/type-aliases/PromptExamples.md +17 -0
- package/docs/type-aliases/PromptTemplateType.md +13 -0
- package/docs/type-aliases/PromptType.md +13 -0
- package/docs/type-aliases/TFunc.md +23 -0
- package/docs/variables/AIChatRoles.md +13 -0
- package/docs/variables/AIMessageTypes.md +13 -0
- package/docs/variables/AITextGenerationFinishReasons.md +13 -0
- package/docs/variables/AbortErrorCode.md +13 -0
- package/docs/variables/ActionNames.md +13 -0
- package/docs/variables/AlreadyExistsErrorCode.md +13 -0
- package/docs/variables/ClientToolFuncSchema.md +87 -0
- package/docs/variables/DefaultAsyncSemaphoreCapacity.md +13 -0
- package/docs/variables/EventBusName.md +13 -0
- package/docs/variables/EventName.md +13 -0
- package/docs/variables/FilenameReservedRegex.md +16 -0
- package/docs/variables/HFBuiltins.md +92 -0
- package/docs/variables/InternalErrorCode.md +13 -0
- package/docs/variables/NotFoundErrorCode.md +13 -0
- package/docs/variables/NotImplementedErrorCode.md +13 -0
- package/docs/variables/PASSING_SCORE.md +13 -0
- package/docs/variables/PromptTemplateTypes.md +13 -0
- package/docs/variables/PromptTypes.md +16 -0
- package/docs/variables/RStreamErrCode.md +13 -0
- package/docs/variables/RemoteToolFuncSchema.md +87 -0
- package/docs/variables/ResponseRStreamErrCode.md +13 -0
- package/docs/variables/SSEChannelAlreadyClosedErrCode.md +13 -0
- package/docs/variables/ServerToolFuncSchema.md +87 -0
- package/docs/variables/ToolAsyncCancelableBit.md +13 -0
- package/docs/variables/ToolAsyncMultiTaskBit.md +13 -0
- package/docs/variables/ToolAsyncPriorityBit.md +13 -0
- package/docs/variables/ToolFuncSchema.md +125 -0
- package/docs/variables/WindowsReservedNameRegex.md +15 -0
- package/docs/variables/base32768.md +13 -0
- package/docs/variables/defaultTemplateFormat.md +13 -0
- package/docs/variables/event.md +13 -0
- package/docs/variables/eventClient.md +13 -0
- package/docs/variables/eventServer.md +13 -0
- package/docs/variables/lrucache.md +13 -0
- package/docs/variables/mimeType.md +13 -0
- package/docs/variables/uuidNIL.md +13 -0
- package/package.json +26 -27
- package/dist/chunk-W2LO3HZT.mjs +0 -1
- package/docs/.nojekyll +0 -1
- package/docs/enums/AsyncFeatureBits.md +0 -41
- package/docs/enums/AsyncFeatures.md +0 -41
- package/docs/enums/ErrorCode.md +0 -239
- package/docs/enums/XXHashAlgorithm.md +0 -30
- package/docs/modules.md +0 -4062
|
@@ -1,148 +1,30 @@
|
|
|
1
|
-
[
|
|
1
|
+
[**@isdk/ai-tool**](../README.md) • **Docs**
|
|
2
|
+
|
|
3
|
+
***
|
|
4
|
+
|
|
5
|
+
[@isdk/ai-tool](../globals.md) / ResClientTools
|
|
2
6
|
|
|
3
7
|
# Class: ResClientTools
|
|
4
8
|
|
|
5
|
-
##
|
|
9
|
+
## Extends
|
|
6
10
|
|
|
7
11
|
- `RpcMethodsClientTool`
|
|
8
12
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
## Table of contents
|
|
14
|
-
|
|
15
|
-
### Constructors
|
|
16
|
-
|
|
17
|
-
- [constructor](ResClientTools.md#constructor)
|
|
18
|
-
|
|
19
|
-
### Properties
|
|
20
|
-
|
|
21
|
-
- [$attributes](ResClientTools.md#$attributes)
|
|
22
|
-
- [action](ResClientTools.md#action)
|
|
23
|
-
- [apiRoot](ResClientTools.md#apiroot)
|
|
24
|
-
- [constructor](ResClientTools.md#constructor-1)
|
|
25
|
-
- [defaultOptions](ResClientTools.md#defaultoptions)
|
|
26
|
-
- [fetchOptions](ResClientTools.md#fetchoptions)
|
|
27
|
-
- [isApi](ResClientTools.md#isapi)
|
|
28
|
-
- [name](ResClientTools.md#name)
|
|
29
|
-
- [nonExported1stChar](ResClientTools.md#nonexported1stchar)
|
|
30
|
-
- [params](ResClientTools.md#params)
|
|
31
|
-
- [result](ResClientTools.md#result)
|
|
32
|
-
- [scope](ResClientTools.md#scope)
|
|
33
|
-
- [setup](ResClientTools.md#setup)
|
|
34
|
-
- [should](ResClientTools.md#should)
|
|
35
|
-
- [stream](ResClientTools.md#stream)
|
|
36
|
-
- [tags](ResClientTools.md#tags)
|
|
37
|
-
- [dataPath](ResClientTools.md#datapath)
|
|
38
|
-
- [items](ResClientTools.md#items)
|
|
39
|
-
|
|
40
|
-
### Accessors
|
|
41
|
-
|
|
42
|
-
- [apiRoot](ResClientTools.md#apiroot-1)
|
|
43
|
-
|
|
44
|
-
### Methods
|
|
45
|
-
|
|
46
|
-
- [\_func](ResClientTools.md#_func)
|
|
47
|
-
- [arr2ObjParams](ResClientTools.md#arr2objparams)
|
|
48
|
-
- [assign](ResClientTools.md#assign)
|
|
49
|
-
- [assignMethods](ResClientTools.md#assignmethods)
|
|
50
|
-
- [assignProperty](ResClientTools.md#assignproperty)
|
|
51
|
-
- [assignPropertyTo](ResClientTools.md#assignpropertyto)
|
|
52
|
-
- [assignTo](ResClientTools.md#assignto)
|
|
53
|
-
- [clone](ResClientTools.md#clone)
|
|
54
|
-
- [cloneTo](ResClientTools.md#cloneto)
|
|
55
|
-
- [defineProperties](ResClientTools.md#defineproperties)
|
|
56
|
-
- [delete](ResClientTools.md#delete)
|
|
57
|
-
- [errorFrom](ResClientTools.md#errorfrom)
|
|
58
|
-
- [exportTo](ResClientTools.md#exportto)
|
|
59
|
-
- [fetch](ResClientTools.md#fetch)
|
|
60
|
-
- [func](ResClientTools.md#func)
|
|
61
|
-
- [get](ResClientTools.md#get)
|
|
62
|
-
- [getFunc](ResClientTools.md#getfunc)
|
|
63
|
-
- [getFuncWithPos](ResClientTools.md#getfuncwithpos)
|
|
64
|
-
- [getProperties](ResClientTools.md#getproperties)
|
|
65
|
-
- [getUrlParams](ResClientTools.md#geturlparams)
|
|
66
|
-
- [hasAsyncFeature](ResClientTools.md#hasasyncfeature)
|
|
67
|
-
- [hasOwnProperty](ResClientTools.md#hasownproperty)
|
|
68
|
-
- [initialize](ResClientTools.md#initialize)
|
|
69
|
-
- [isPrototypeOf](ResClientTools.md#isprototypeof)
|
|
70
|
-
- [isSame](ResClientTools.md#issame)
|
|
71
|
-
- [isStream](ResClientTools.md#isstream)
|
|
72
|
-
- [list](ResClientTools.md#list)
|
|
73
|
-
- [mergeTo](ResClientTools.md#mergeto)
|
|
74
|
-
- [obj2ArrParams](ResClientTools.md#obj2arrparams)
|
|
75
|
-
- [post](ResClientTools.md#post)
|
|
76
|
-
- [propertyIsEnumerable](ResClientTools.md#propertyisenumerable)
|
|
77
|
-
- [put](ResClientTools.md#put)
|
|
78
|
-
- [register](ResClientTools.md#register)
|
|
79
|
-
- [run](ResClientTools.md#run)
|
|
80
|
-
- [runAs](ResClientTools.md#runas)
|
|
81
|
-
- [runAsSync](ResClientTools.md#runassync)
|
|
82
|
-
- [runSync](ResClientTools.md#runsync)
|
|
83
|
-
- [runWithPos](ResClientTools.md#runwithpos)
|
|
84
|
-
- [runWithPosAs](ResClientTools.md#runwithposas)
|
|
85
|
-
- [runWithPosAsSync](ResClientTools.md#runwithposassync)
|
|
86
|
-
- [runWithPosSync](ResClientTools.md#runwithpossync)
|
|
87
|
-
- [toJSON](ResClientTools.md#tojson)
|
|
88
|
-
- [toLocaleString](ResClientTools.md#tolocalestring)
|
|
89
|
-
- [toObject](ResClientTools.md#toobject)
|
|
90
|
-
- [toString](ResClientTools.md#tostring)
|
|
91
|
-
- [unregister](ResClientTools.md#unregister)
|
|
92
|
-
- [valueOf](ResClientTools.md#valueof)
|
|
93
|
-
- [assign](ResClientTools.md#assign-1)
|
|
94
|
-
- [create](ResClientTools.md#create)
|
|
95
|
-
- [defineProperties](ResClientTools.md#defineproperties-1)
|
|
96
|
-
- [defineProperty](ResClientTools.md#defineproperty)
|
|
97
|
-
- [entries](ResClientTools.md#entries)
|
|
98
|
-
- [fetch](ResClientTools.md#fetch-1)
|
|
99
|
-
- [freeze](ResClientTools.md#freeze)
|
|
100
|
-
- [fromEntries](ResClientTools.md#fromentries)
|
|
101
|
-
- [get](ResClientTools.md#get-1)
|
|
102
|
-
- [getAllByTag](ResClientTools.md#getallbytag)
|
|
103
|
-
- [getByTag](ResClientTools.md#getbytag)
|
|
104
|
-
- [getFunc](ResClientTools.md#getfunc-1)
|
|
105
|
-
- [getFuncWithPos](ResClientTools.md#getfuncwithpos-1)
|
|
106
|
-
- [getOwnPropertyDescriptor](ResClientTools.md#getownpropertydescriptor)
|
|
107
|
-
- [getOwnPropertyDescriptors](ResClientTools.md#getownpropertydescriptors)
|
|
108
|
-
- [getOwnPropertyNames](ResClientTools.md#getownpropertynames)
|
|
109
|
-
- [getOwnPropertySymbols](ResClientTools.md#getownpropertysymbols)
|
|
110
|
-
- [getProperties](ResClientTools.md#getproperties-1)
|
|
111
|
-
- [getPrototypeOf](ResClientTools.md#getprototypeof)
|
|
112
|
-
- [hasAsyncFeature](ResClientTools.md#hasasyncfeature-1)
|
|
113
|
-
- [hasOwn](ResClientTools.md#hasown)
|
|
114
|
-
- [is](ResClientTools.md#is)
|
|
115
|
-
- [isExtensible](ResClientTools.md#isextensible)
|
|
116
|
-
- [isFrozen](ResClientTools.md#isfrozen)
|
|
117
|
-
- [isSealed](ResClientTools.md#issealed)
|
|
118
|
-
- [keys](ResClientTools.md#keys)
|
|
119
|
-
- [list](ResClientTools.md#list-1)
|
|
120
|
-
- [loadFrom](ResClientTools.md#loadfrom)
|
|
121
|
-
- [loadFromSync](ResClientTools.md#loadfromsync)
|
|
122
|
-
- [preventExtensions](ResClientTools.md#preventextensions)
|
|
123
|
-
- [register](ResClientTools.md#register-1)
|
|
124
|
-
- [run](ResClientTools.md#run-1)
|
|
125
|
-
- [runSync](ResClientTools.md#runsync-1)
|
|
126
|
-
- [runWithPos](ResClientTools.md#runwithpos-1)
|
|
127
|
-
- [runWithPosSync](ResClientTools.md#runwithpossync-1)
|
|
128
|
-
- [seal](ResClientTools.md#seal)
|
|
129
|
-
- [setApiRoot](ResClientTools.md#setapiroot)
|
|
130
|
-
- [setPrototypeOf](ResClientTools.md#setprototypeof)
|
|
131
|
-
- [unregister](ResClientTools.md#unregister-1)
|
|
132
|
-
- [values](ResClientTools.md#values)
|
|
13
|
+
## Extended by
|
|
14
|
+
|
|
15
|
+
- [`EventClient`](EventClient.md)
|
|
133
16
|
|
|
134
17
|
## Constructors
|
|
135
18
|
|
|
136
|
-
###
|
|
19
|
+
### new ResClientTools()
|
|
137
20
|
|
|
138
|
-
|
|
21
|
+
> **new ResClientTools**(`name`, `options`): [`ResClientTools`](ResClientTools.md)
|
|
139
22
|
|
|
140
23
|
#### Parameters
|
|
141
24
|
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
| `options` | `any` |
|
|
25
|
+
• **name**: `string` \| `Function` \| [`FuncItem`](../interfaces/FuncItem.md)
|
|
26
|
+
|
|
27
|
+
• **options**: `any` = `{}`
|
|
146
28
|
|
|
147
29
|
#### Returns
|
|
148
30
|
|
|
@@ -150,221 +32,217 @@
|
|
|
150
32
|
|
|
151
33
|
#### Defined in
|
|
152
34
|
|
|
153
|
-
[packages/ai-tool/src/tool-func.ts:210](https://github.com/isdk/ai-tool.js/blob/
|
|
35
|
+
[packages/ai-tool/src/tool-func.ts:210](https://github.com/isdk/ai-tool.js/blob/5f9f0083c734722103ff5468e424b48c212a55f0/src/tool-func.ts#L210)
|
|
154
36
|
|
|
155
37
|
## Properties
|
|
156
38
|
|
|
157
39
|
### $attributes
|
|
158
40
|
|
|
159
|
-
|
|
41
|
+
> **$attributes**: `Properties`
|
|
160
42
|
|
|
161
43
|
#### Defined in
|
|
162
44
|
|
|
163
|
-
|
|
45
|
+
node\_modules/.pnpm/property-manager@2.0.0/node\_modules/property-manager/lib/advance.d.ts:5
|
|
164
46
|
|
|
165
|
-
|
|
47
|
+
***
|
|
166
48
|
|
|
167
|
-
### action
|
|
49
|
+
### action?
|
|
168
50
|
|
|
169
|
-
|
|
51
|
+
> `optional` **action**: `"get"` \| `"post"` \| `"put"` \| `"delete"` \| `"patch"` \| `"list"` \| `"res"`
|
|
170
52
|
|
|
171
53
|
#### Defined in
|
|
172
54
|
|
|
173
|
-
[packages/ai-tool/src/utils/consts.ts:35](https://github.com/isdk/ai-tool.js/blob/
|
|
55
|
+
[packages/ai-tool/src/utils/consts.ts:35](https://github.com/isdk/ai-tool.js/blob/5f9f0083c734722103ff5468e424b48c212a55f0/src/utils/consts.ts#L35)
|
|
174
56
|
|
|
175
|
-
|
|
57
|
+
***
|
|
176
58
|
|
|
177
59
|
### apiRoot
|
|
178
60
|
|
|
179
|
-
|
|
61
|
+
> **apiRoot**: `undefined` \| `string`
|
|
180
62
|
|
|
181
63
|
#### Defined in
|
|
182
64
|
|
|
183
|
-
[packages/ai-tool/src/client-tools.ts:16](https://github.com/isdk/ai-tool.js/blob/
|
|
65
|
+
[packages/ai-tool/src/client-tools.ts:16](https://github.com/isdk/ai-tool.js/blob/5f9f0083c734722103ff5468e424b48c212a55f0/src/client-tools.ts#L16)
|
|
184
66
|
|
|
185
|
-
|
|
67
|
+
***
|
|
186
68
|
|
|
187
69
|
### constructor
|
|
188
70
|
|
|
189
|
-
|
|
71
|
+
> **constructor**: `Function`
|
|
190
72
|
|
|
191
73
|
The initial value of Object.prototype.constructor is the standard built-in Object constructor.
|
|
192
74
|
|
|
193
75
|
#### Defined in
|
|
194
76
|
|
|
195
|
-
|
|
77
|
+
node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es5.d.ts:125
|
|
196
78
|
|
|
197
|
-
|
|
79
|
+
***
|
|
198
80
|
|
|
199
81
|
### defaultOptions
|
|
200
82
|
|
|
201
|
-
|
|
83
|
+
> **defaultOptions**: `object`
|
|
202
84
|
|
|
203
85
|
The default options for export and assign
|
|
204
86
|
|
|
205
|
-
####
|
|
87
|
+
#### assign?
|
|
88
|
+
|
|
89
|
+
> `optional` **assign**: `IMergeOptions`
|
|
206
90
|
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
| `export?` | `IMergeOptions` |
|
|
91
|
+
#### export?
|
|
92
|
+
|
|
93
|
+
> `optional` **export**: `IMergeOptions`
|
|
211
94
|
|
|
212
95
|
#### Defined in
|
|
213
96
|
|
|
214
|
-
|
|
97
|
+
node\_modules/.pnpm/property-manager@2.0.0/node\_modules/property-manager/lib/abstract.d.ts:74
|
|
215
98
|
|
|
216
|
-
|
|
99
|
+
***
|
|
217
100
|
|
|
218
|
-
### fetchOptions
|
|
101
|
+
### fetchOptions?
|
|
219
102
|
|
|
220
|
-
|
|
103
|
+
> `optional` **fetchOptions**: `any`
|
|
221
104
|
|
|
222
105
|
#### Defined in
|
|
223
106
|
|
|
224
|
-
[packages/ai-tool/src/utils/consts.ts:36](https://github.com/isdk/ai-tool.js/blob/
|
|
107
|
+
[packages/ai-tool/src/utils/consts.ts:36](https://github.com/isdk/ai-tool.js/blob/5f9f0083c734722103ff5468e424b48c212a55f0/src/utils/consts.ts#L36)
|
|
225
108
|
|
|
226
|
-
|
|
109
|
+
***
|
|
227
110
|
|
|
228
|
-
### isApi
|
|
111
|
+
### isApi?
|
|
229
112
|
|
|
230
|
-
|
|
113
|
+
> `optional` **isApi**: `boolean`
|
|
231
114
|
|
|
232
115
|
#### Defined in
|
|
233
116
|
|
|
234
|
-
[packages/ai-tool/src/tool-func.ts:47](https://github.com/isdk/ai-tool.js/blob/
|
|
117
|
+
[packages/ai-tool/src/tool-func.ts:47](https://github.com/isdk/ai-tool.js/blob/5f9f0083c734722103ff5468e424b48c212a55f0/src/tool-func.ts#L47)
|
|
235
118
|
|
|
236
|
-
|
|
119
|
+
***
|
|
237
120
|
|
|
238
|
-
### name
|
|
121
|
+
### name?
|
|
239
122
|
|
|
240
|
-
|
|
123
|
+
> `optional` **name**: `string`
|
|
241
124
|
|
|
242
125
|
#### Defined in
|
|
243
126
|
|
|
244
|
-
[packages/ai-tool/src/tool-func.ts:41](https://github.com/isdk/ai-tool.js/blob/
|
|
127
|
+
[packages/ai-tool/src/tool-func.ts:41](https://github.com/isdk/ai-tool.js/blob/5f9f0083c734722103ff5468e424b48c212a55f0/src/tool-func.ts#L41)
|
|
245
128
|
|
|
246
|
-
|
|
129
|
+
***
|
|
247
130
|
|
|
248
131
|
### nonExported1stChar
|
|
249
132
|
|
|
250
|
-
|
|
133
|
+
> **nonExported1stChar**: `string`
|
|
251
134
|
|
|
252
135
|
the property with the default prefix '$' will not be exported.
|
|
253
136
|
|
|
254
137
|
#### Defined in
|
|
255
138
|
|
|
256
|
-
|
|
139
|
+
node\_modules/.pnpm/property-manager@2.0.0/node\_modules/property-manager/lib/abstract.d.ts:78
|
|
257
140
|
|
|
258
|
-
|
|
141
|
+
***
|
|
259
142
|
|
|
260
|
-
### params
|
|
143
|
+
### params?
|
|
261
144
|
|
|
262
|
-
|
|
145
|
+
> `optional` **params**: [`FuncParams`](../interfaces/FuncParams.md) \| [`FuncParam`](../interfaces/FuncParam.md)[]
|
|
263
146
|
|
|
264
147
|
#### Defined in
|
|
265
148
|
|
|
266
|
-
[packages/ai-tool/src/tool-func.ts:42](https://github.com/isdk/ai-tool.js/blob/
|
|
149
|
+
[packages/ai-tool/src/tool-func.ts:42](https://github.com/isdk/ai-tool.js/blob/5f9f0083c734722103ff5468e424b48c212a55f0/src/tool-func.ts#L42)
|
|
267
150
|
|
|
268
|
-
|
|
151
|
+
***
|
|
269
152
|
|
|
270
|
-
### result
|
|
153
|
+
### result?
|
|
271
154
|
|
|
272
|
-
|
|
155
|
+
> `optional` **result**: `string`
|
|
273
156
|
|
|
274
157
|
#### Defined in
|
|
275
158
|
|
|
276
|
-
[packages/ai-tool/src/tool-func.ts:43](https://github.com/isdk/ai-tool.js/blob/
|
|
159
|
+
[packages/ai-tool/src/tool-func.ts:43](https://github.com/isdk/ai-tool.js/blob/5f9f0083c734722103ff5468e424b48c212a55f0/src/tool-func.ts#L43)
|
|
277
160
|
|
|
278
|
-
|
|
161
|
+
***
|
|
279
162
|
|
|
280
|
-
### scope
|
|
163
|
+
### scope?
|
|
281
164
|
|
|
282
|
-
|
|
165
|
+
> `optional` **scope**: `any`
|
|
283
166
|
|
|
284
167
|
#### Defined in
|
|
285
168
|
|
|
286
|
-
[packages/ai-tool/src/tool-func.ts:44](https://github.com/isdk/ai-tool.js/blob/
|
|
287
|
-
|
|
288
|
-
___
|
|
169
|
+
[packages/ai-tool/src/tool-func.ts:44](https://github.com/isdk/ai-tool.js/blob/5f9f0083c734722103ff5468e424b48c212a55f0/src/tool-func.ts#L44)
|
|
289
170
|
|
|
290
|
-
|
|
171
|
+
***
|
|
291
172
|
|
|
292
|
-
|
|
173
|
+
### setup()?
|
|
293
174
|
|
|
294
|
-
|
|
175
|
+
> `optional` **setup**: (`this`, `options`?) => `void`
|
|
295
176
|
|
|
296
|
-
|
|
177
|
+
#### Parameters
|
|
297
178
|
|
|
298
|
-
|
|
179
|
+
• **this**: [`ToolFunc`](ToolFunc.md)
|
|
299
180
|
|
|
300
|
-
|
|
301
|
-
| :------ | :------ |
|
|
302
|
-
| `this` | [`ToolFunc`](ToolFunc.md) |
|
|
303
|
-
| `options?` | [`FuncItem`](../interfaces/FuncItem.md) |
|
|
181
|
+
• **options?**: [`FuncItem`](../interfaces/FuncItem.md)
|
|
304
182
|
|
|
305
|
-
|
|
183
|
+
#### Returns
|
|
306
184
|
|
|
307
185
|
`void`
|
|
308
186
|
|
|
309
187
|
#### Defined in
|
|
310
188
|
|
|
311
|
-
[packages/ai-tool/src/tool-func.ts:46](https://github.com/isdk/ai-tool.js/blob/
|
|
189
|
+
[packages/ai-tool/src/tool-func.ts:46](https://github.com/isdk/ai-tool.js/blob/5f9f0083c734722103ff5468e424b48c212a55f0/src/tool-func.ts#L46)
|
|
312
190
|
|
|
313
|
-
|
|
191
|
+
***
|
|
314
192
|
|
|
315
193
|
### should
|
|
316
194
|
|
|
317
|
-
|
|
195
|
+
> **should**: `Assertion`
|
|
318
196
|
|
|
319
197
|
#### Defined in
|
|
320
198
|
|
|
321
|
-
|
|
199
|
+
node\_modules/.pnpm/@types+chai@4.3.16/node\_modules/@types/chai/index.d.ts:2100
|
|
322
200
|
|
|
323
|
-
|
|
201
|
+
***
|
|
324
202
|
|
|
325
|
-
### stream
|
|
203
|
+
### stream?
|
|
326
204
|
|
|
327
|
-
|
|
205
|
+
> `optional` **stream**: `boolean`
|
|
328
206
|
|
|
329
207
|
#### Defined in
|
|
330
208
|
|
|
331
|
-
[packages/ai-tool/src/tool-func.ts:48](https://github.com/isdk/ai-tool.js/blob/
|
|
209
|
+
[packages/ai-tool/src/tool-func.ts:48](https://github.com/isdk/ai-tool.js/blob/5f9f0083c734722103ff5468e424b48c212a55f0/src/tool-func.ts#L48)
|
|
332
210
|
|
|
333
|
-
|
|
211
|
+
***
|
|
334
212
|
|
|
335
|
-
### tags
|
|
213
|
+
### tags?
|
|
336
214
|
|
|
337
|
-
|
|
215
|
+
> `optional` **tags**: `string` \| `string`[]
|
|
338
216
|
|
|
339
217
|
#### Defined in
|
|
340
218
|
|
|
341
|
-
[packages/ai-tool/src/tool-func.ts:45](https://github.com/isdk/ai-tool.js/blob/
|
|
219
|
+
[packages/ai-tool/src/tool-func.ts:45](https://github.com/isdk/ai-tool.js/blob/5f9f0083c734722103ff5468e424b48c212a55f0/src/tool-func.ts#L45)
|
|
342
220
|
|
|
343
|
-
|
|
221
|
+
***
|
|
344
222
|
|
|
345
223
|
### dataPath
|
|
346
224
|
|
|
347
|
-
|
|
225
|
+
> `static` **dataPath**: `string`
|
|
348
226
|
|
|
349
227
|
#### Defined in
|
|
350
228
|
|
|
351
|
-
[packages/ai-tool/src/tool-func.ts:75](https://github.com/isdk/ai-tool.js/blob/
|
|
229
|
+
[packages/ai-tool/src/tool-func.ts:75](https://github.com/isdk/ai-tool.js/blob/5f9f0083c734722103ff5468e424b48c212a55f0/src/tool-func.ts#L75)
|
|
352
230
|
|
|
353
|
-
|
|
231
|
+
***
|
|
354
232
|
|
|
355
233
|
### items
|
|
356
234
|
|
|
357
|
-
|
|
235
|
+
> `static` **items**: [`Funcs`](../interfaces/Funcs.md) = `{}`
|
|
358
236
|
|
|
359
237
|
#### Defined in
|
|
360
238
|
|
|
361
|
-
[packages/ai-tool/src/tool-func.ts:74](https://github.com/isdk/ai-tool.js/blob/
|
|
239
|
+
[packages/ai-tool/src/tool-func.ts:74](https://github.com/isdk/ai-tool.js/blob/5f9f0083c734722103ff5468e424b48c212a55f0/src/tool-func.ts#L74)
|
|
362
240
|
|
|
363
241
|
## Accessors
|
|
364
242
|
|
|
365
243
|
### apiRoot
|
|
366
244
|
|
|
367
|
-
|
|
245
|
+
> `get` `static` **apiRoot**(): `undefined` \| `string`
|
|
368
246
|
|
|
369
247
|
#### Returns
|
|
370
248
|
|
|
@@ -372,20 +250,19 @@ ___
|
|
|
372
250
|
|
|
373
251
|
#### Defined in
|
|
374
252
|
|
|
375
|
-
[packages/ai-tool/src/client-tools.ts:19](https://github.com/isdk/ai-tool.js/blob/
|
|
253
|
+
[packages/ai-tool/src/client-tools.ts:19](https://github.com/isdk/ai-tool.js/blob/5f9f0083c734722103ff5468e424b48c212a55f0/src/client-tools.ts#L19)
|
|
376
254
|
|
|
377
255
|
## Methods
|
|
378
256
|
|
|
379
|
-
### \_func
|
|
257
|
+
### \_func()
|
|
380
258
|
|
|
381
|
-
|
|
259
|
+
> **\_func**(`action`, `options`): `Promise`\<`any`\>
|
|
382
260
|
|
|
383
261
|
#### Parameters
|
|
384
262
|
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
| `options` | `RpcMethodsClientFuncParams` |
|
|
263
|
+
• **action**: `"get"` \| `"post"` \| `"put"` \| `"delete"` \| `"patch"` \| `"list"` \| `"res"`
|
|
264
|
+
|
|
265
|
+
• **options**: `RpcMethodsClientFuncParams`
|
|
389
266
|
|
|
390
267
|
#### Returns
|
|
391
268
|
|
|
@@ -393,19 +270,17 @@ ___
|
|
|
393
270
|
|
|
394
271
|
#### Defined in
|
|
395
272
|
|
|
396
|
-
[packages/ai-tool/src/rpc-methods-client-tool.ts:10](https://github.com/isdk/ai-tool.js/blob/
|
|
273
|
+
[packages/ai-tool/src/rpc-methods-client-tool.ts:10](https://github.com/isdk/ai-tool.js/blob/5f9f0083c734722103ff5468e424b48c212a55f0/src/rpc-methods-client-tool.ts#L10)
|
|
397
274
|
|
|
398
|
-
|
|
275
|
+
***
|
|
399
276
|
|
|
400
|
-
### arr2ObjParams
|
|
277
|
+
### arr2ObjParams()
|
|
401
278
|
|
|
402
|
-
|
|
279
|
+
> **arr2ObjParams**(`params`): `any`[]
|
|
403
280
|
|
|
404
281
|
#### Parameters
|
|
405
282
|
|
|
406
|
-
|
|
407
|
-
| :------ | :------ |
|
|
408
|
-
| `params` | `any`[] |
|
|
283
|
+
• **params**: `any`[]
|
|
409
284
|
|
|
410
285
|
#### Returns
|
|
411
286
|
|
|
@@ -413,22 +288,23 @@ ___
|
|
|
413
288
|
|
|
414
289
|
#### Defined in
|
|
415
290
|
|
|
416
|
-
[packages/ai-tool/src/tool-func.ts:254](https://github.com/isdk/ai-tool.js/blob/
|
|
291
|
+
[packages/ai-tool/src/tool-func.ts:254](https://github.com/isdk/ai-tool.js/blob/5f9f0083c734722103ff5468e424b48c212a55f0/src/tool-func.ts#L254)
|
|
417
292
|
|
|
418
|
-
|
|
293
|
+
***
|
|
419
294
|
|
|
420
|
-
### assign
|
|
295
|
+
### assign()
|
|
421
296
|
|
|
422
|
-
|
|
297
|
+
> **assign**(`src`, `options`?): `this`
|
|
423
298
|
|
|
424
299
|
Assign the values from the src object.
|
|
425
300
|
|
|
426
301
|
#### Parameters
|
|
427
302
|
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
303
|
+
• **src**: `any`
|
|
304
|
+
|
|
305
|
+
the source object
|
|
306
|
+
|
|
307
|
+
• **options?**: `IMergeOptions`
|
|
432
308
|
|
|
433
309
|
#### Returns
|
|
434
310
|
|
|
@@ -438,19 +314,17 @@ this object
|
|
|
438
314
|
|
|
439
315
|
#### Defined in
|
|
440
316
|
|
|
441
|
-
|
|
317
|
+
node\_modules/.pnpm/property-manager@2.0.0/node\_modules/property-manager/lib/abstract.d.ts:106
|
|
442
318
|
|
|
443
|
-
|
|
319
|
+
***
|
|
444
320
|
|
|
445
|
-
### assignMethods
|
|
321
|
+
### assignMethods()
|
|
446
322
|
|
|
447
|
-
|
|
323
|
+
> **assignMethods**(`methods`): `void`
|
|
448
324
|
|
|
449
325
|
#### Parameters
|
|
450
326
|
|
|
451
|
-
|
|
452
|
-
| :------ | :------ |
|
|
453
|
-
| `methods` | `string`[] |
|
|
327
|
+
• **methods**: `string`[]
|
|
454
328
|
|
|
455
329
|
#### Returns
|
|
456
330
|
|
|
@@ -458,25 +332,35 @@ ___
|
|
|
458
332
|
|
|
459
333
|
#### Defined in
|
|
460
334
|
|
|
461
|
-
[packages/ai-tool/src/rpc-methods-client-tool.ts:27](https://github.com/isdk/ai-tool.js/blob/
|
|
335
|
+
[packages/ai-tool/src/rpc-methods-client-tool.ts:27](https://github.com/isdk/ai-tool.js/blob/5f9f0083c734722103ff5468e424b48c212a55f0/src/rpc-methods-client-tool.ts#L27)
|
|
462
336
|
|
|
463
|
-
|
|
337
|
+
***
|
|
464
338
|
|
|
465
|
-
### assignProperty
|
|
339
|
+
### assignProperty()
|
|
466
340
|
|
|
467
|
-
|
|
341
|
+
> **assignProperty**(`src`, `name`, `value`, `attrs`?, `options`?): `void`
|
|
468
342
|
|
|
469
343
|
Assign a property of src to this object.
|
|
470
344
|
|
|
471
345
|
#### Parameters
|
|
472
346
|
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
347
|
+
• **src**: `any`
|
|
348
|
+
|
|
349
|
+
the src object
|
|
350
|
+
|
|
351
|
+
• **name**: `string`
|
|
352
|
+
|
|
353
|
+
the property name to assign
|
|
354
|
+
|
|
355
|
+
• **value**: `any`
|
|
356
|
+
|
|
357
|
+
the property value to assign
|
|
358
|
+
|
|
359
|
+
• **attrs?**: `any`
|
|
360
|
+
|
|
361
|
+
the attributes object
|
|
362
|
+
|
|
363
|
+
• **options?**: `IMergeOptions`
|
|
480
364
|
|
|
481
365
|
#### Returns
|
|
482
366
|
|
|
@@ -484,51 +368,63 @@ Assign a property of src to this object.
|
|
|
484
368
|
|
|
485
369
|
#### Defined in
|
|
486
370
|
|
|
487
|
-
|
|
371
|
+
node\_modules/.pnpm/property-manager@2.0.0/node\_modules/property-manager/lib/abstract.d.ts:117
|
|
488
372
|
|
|
489
|
-
|
|
373
|
+
***
|
|
490
374
|
|
|
491
|
-
### assignPropertyTo
|
|
375
|
+
### assignPropertyTo()
|
|
492
376
|
|
|
493
|
-
|
|
377
|
+
> `abstract` **assignPropertyTo**(`dest`, `src`, `name`, `value`, `attrs`?, `options`?): `void`
|
|
494
378
|
|
|
495
379
|
Assign the property value from the src to destination object.
|
|
496
380
|
|
|
497
381
|
#### Parameters
|
|
498
382
|
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
383
|
+
• **dest**: `any`
|
|
384
|
+
|
|
385
|
+
The destination object
|
|
386
|
+
|
|
387
|
+
• **src**: `any`
|
|
388
|
+
|
|
389
|
+
The src object
|
|
390
|
+
|
|
391
|
+
• **name**: `string`
|
|
392
|
+
|
|
393
|
+
The property name
|
|
394
|
+
|
|
395
|
+
• **value**: `any`
|
|
396
|
+
|
|
397
|
+
The property value
|
|
398
|
+
|
|
399
|
+
• **attrs?**: `any`
|
|
400
|
+
|
|
401
|
+
The attributes object of the property
|
|
402
|
+
|
|
403
|
+
• **options?**: `IMergeOptions`
|
|
507
404
|
|
|
508
405
|
#### Returns
|
|
509
406
|
|
|
510
407
|
`void`
|
|
511
408
|
|
|
512
|
-
**`Abstract`**
|
|
513
|
-
|
|
514
409
|
#### Defined in
|
|
515
410
|
|
|
516
|
-
|
|
411
|
+
node\_modules/.pnpm/property-manager@2.0.0/node\_modules/property-manager/lib/abstract.d.ts:131
|
|
517
412
|
|
|
518
|
-
|
|
413
|
+
***
|
|
519
414
|
|
|
520
|
-
### assignTo
|
|
415
|
+
### assignTo()
|
|
521
416
|
|
|
522
|
-
|
|
417
|
+
> **assignTo**(`dest`?, `options`?): `any`
|
|
523
418
|
|
|
524
419
|
Assign this attributes to the dest object
|
|
525
420
|
|
|
526
421
|
#### Parameters
|
|
527
422
|
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
423
|
+
• **dest?**: `any`
|
|
424
|
+
|
|
425
|
+
the destination object
|
|
426
|
+
|
|
427
|
+
• **options?**: `IMergeOptions`
|
|
532
428
|
|
|
533
429
|
#### Returns
|
|
534
430
|
|
|
@@ -538,21 +434,19 @@ the dest object
|
|
|
538
434
|
|
|
539
435
|
#### Defined in
|
|
540
436
|
|
|
541
|
-
|
|
437
|
+
node\_modules/.pnpm/property-manager@2.0.0/node\_modules/property-manager/lib/abstract.d.ts:191
|
|
542
438
|
|
|
543
|
-
|
|
439
|
+
***
|
|
544
440
|
|
|
545
|
-
### clone
|
|
441
|
+
### clone()
|
|
546
442
|
|
|
547
|
-
|
|
443
|
+
> **clone**(`options`?): `any`
|
|
548
444
|
|
|
549
445
|
Create a new object with the same values of attributes.
|
|
550
446
|
|
|
551
447
|
#### Parameters
|
|
552
448
|
|
|
553
|
-
|
|
554
|
-
| :------ | :------ |
|
|
555
|
-
| `options?` | `IMergeOptions` |
|
|
449
|
+
• **options?**: `IMergeOptions`
|
|
556
450
|
|
|
557
451
|
#### Returns
|
|
558
452
|
|
|
@@ -562,22 +456,23 @@ the new object
|
|
|
562
456
|
|
|
563
457
|
#### Defined in
|
|
564
458
|
|
|
565
|
-
|
|
459
|
+
node\_modules/.pnpm/property-manager@2.0.0/node\_modules/property-manager/lib/abstract.d.ts:155
|
|
566
460
|
|
|
567
|
-
|
|
461
|
+
***
|
|
568
462
|
|
|
569
|
-
### cloneTo
|
|
463
|
+
### cloneTo()
|
|
570
464
|
|
|
571
|
-
|
|
465
|
+
> **cloneTo**(`dest`, `options`?): `any`
|
|
572
466
|
|
|
573
467
|
Create and assign the values to the destination object.
|
|
574
468
|
|
|
575
469
|
#### Parameters
|
|
576
470
|
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
471
|
+
• **dest**: `any`
|
|
472
|
+
|
|
473
|
+
the destination object
|
|
474
|
+
|
|
475
|
+
• **options?**: `IMergeOptions`
|
|
581
476
|
|
|
582
477
|
#### Returns
|
|
583
478
|
|
|
@@ -587,43 +482,39 @@ the new dest object
|
|
|
587
482
|
|
|
588
483
|
#### Defined in
|
|
589
484
|
|
|
590
|
-
|
|
485
|
+
node\_modules/.pnpm/property-manager@2.0.0/node\_modules/property-manager/lib/abstract.d.ts:148
|
|
591
486
|
|
|
592
|
-
|
|
487
|
+
***
|
|
593
488
|
|
|
594
|
-
### defineProperties
|
|
489
|
+
### defineProperties()
|
|
595
490
|
|
|
596
|
-
|
|
491
|
+
> `abstract` **defineProperties**(`aProperties`): `any`
|
|
597
492
|
|
|
598
493
|
Define the attributes of this object.
|
|
599
494
|
|
|
600
495
|
#### Parameters
|
|
601
496
|
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
497
|
+
• **aProperties**: `SimplePropDescriptors`
|
|
498
|
+
|
|
499
|
+
the defined attributes of the object
|
|
605
500
|
|
|
606
501
|
#### Returns
|
|
607
502
|
|
|
608
503
|
`any`
|
|
609
504
|
|
|
610
|
-
**`Abstract`**
|
|
611
|
-
|
|
612
505
|
#### Defined in
|
|
613
506
|
|
|
614
|
-
|
|
507
|
+
node\_modules/.pnpm/property-manager@2.0.0/node\_modules/property-manager/lib/abstract.d.ts:89
|
|
615
508
|
|
|
616
|
-
|
|
509
|
+
***
|
|
617
510
|
|
|
618
|
-
### delete
|
|
511
|
+
### delete()?
|
|
619
512
|
|
|
620
|
-
|
|
513
|
+
> `optional` **delete**(`__namedParameters`): `any`
|
|
621
514
|
|
|
622
515
|
#### Parameters
|
|
623
516
|
|
|
624
|
-
|
|
625
|
-
| :------ | :------ |
|
|
626
|
-
| `«destructured»` | [`ResClientFuncParams`](../interfaces/ResClientFuncParams.md) |
|
|
517
|
+
• **\_\_namedParameters**: [`ResClientFuncParams`](../interfaces/ResClientFuncParams.md)
|
|
627
518
|
|
|
628
519
|
#### Returns
|
|
629
520
|
|
|
@@ -631,19 +522,17 @@ ___
|
|
|
631
522
|
|
|
632
523
|
#### Defined in
|
|
633
524
|
|
|
634
|
-
[packages/ai-tool/src/res-client-tools.ts:13](https://github.com/isdk/ai-tool.js/blob/
|
|
525
|
+
[packages/ai-tool/src/res-client-tools.ts:13](https://github.com/isdk/ai-tool.js/blob/5f9f0083c734722103ff5468e424b48c212a55f0/src/res-client-tools.ts#L13)
|
|
635
526
|
|
|
636
|
-
|
|
527
|
+
***
|
|
637
528
|
|
|
638
|
-
### errorFrom
|
|
529
|
+
### errorFrom()
|
|
639
530
|
|
|
640
|
-
|
|
531
|
+
> **errorFrom**(`res`): `Promise`\<[`CommonError`](CommonError.md)\>
|
|
641
532
|
|
|
642
533
|
#### Parameters
|
|
643
534
|
|
|
644
|
-
|
|
645
|
-
| :------ | :------ |
|
|
646
|
-
| `res` | `Response` |
|
|
535
|
+
• **res**: `Response`
|
|
647
536
|
|
|
648
537
|
#### Returns
|
|
649
538
|
|
|
@@ -651,22 +540,23 @@ ___
|
|
|
651
540
|
|
|
652
541
|
#### Defined in
|
|
653
542
|
|
|
654
|
-
[packages/ai-tool/src/client-tools.ts:112](https://github.com/isdk/ai-tool.js/blob/
|
|
543
|
+
[packages/ai-tool/src/client-tools.ts:112](https://github.com/isdk/ai-tool.js/blob/5f9f0083c734722103ff5468e424b48c212a55f0/src/client-tools.ts#L112)
|
|
655
544
|
|
|
656
|
-
|
|
545
|
+
***
|
|
657
546
|
|
|
658
|
-
### exportTo
|
|
547
|
+
### exportTo()
|
|
659
548
|
|
|
660
|
-
|
|
549
|
+
> **exportTo**(`dest`, `options`?): `any`
|
|
661
550
|
|
|
662
551
|
Export attributes to the dest json object.
|
|
663
552
|
|
|
664
553
|
#### Parameters
|
|
665
554
|
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
555
|
+
• **dest**: `any`
|
|
556
|
+
|
|
557
|
+
the destination object
|
|
558
|
+
|
|
559
|
+
• **options?**: `IExportOptions`
|
|
670
560
|
|
|
671
561
|
#### Returns
|
|
672
562
|
|
|
@@ -676,20 +566,19 @@ the dest object.
|
|
|
676
566
|
|
|
677
567
|
#### Defined in
|
|
678
568
|
|
|
679
|
-
|
|
569
|
+
node\_modules/.pnpm/property-manager@2.0.0/node\_modules/property-manager/lib/abstract.d.ts:173
|
|
680
570
|
|
|
681
|
-
|
|
571
|
+
***
|
|
682
572
|
|
|
683
|
-
### fetch
|
|
573
|
+
### fetch()
|
|
684
574
|
|
|
685
|
-
|
|
575
|
+
> **fetch**(`options`, `action`): `Promise`\<`Response`\>
|
|
686
576
|
|
|
687
577
|
#### Parameters
|
|
688
578
|
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
| `action` | ``"get"`` \| ``"post"`` \| ``"put"`` \| ``"delete"`` \| ``"patch"`` \| ``"list"`` \| ``"res"`` |
|
|
579
|
+
• **options**: [`ResClientFuncParams`](../interfaces/ResClientFuncParams.md)
|
|
580
|
+
|
|
581
|
+
• **action**: `"get"` \| `"post"` \| `"put"` \| `"delete"` \| `"patch"` \| `"list"` \| `"res"`
|
|
693
582
|
|
|
694
583
|
#### Returns
|
|
695
584
|
|
|
@@ -697,19 +586,17 @@ ___
|
|
|
697
586
|
|
|
698
587
|
#### Defined in
|
|
699
588
|
|
|
700
|
-
[packages/ai-tool/src/res-client-tools.ts:18](https://github.com/isdk/ai-tool.js/blob/
|
|
589
|
+
[packages/ai-tool/src/res-client-tools.ts:18](https://github.com/isdk/ai-tool.js/blob/5f9f0083c734722103ff5468e424b48c212a55f0/src/res-client-tools.ts#L18)
|
|
701
590
|
|
|
702
|
-
|
|
591
|
+
***
|
|
703
592
|
|
|
704
|
-
### func
|
|
593
|
+
### func()
|
|
705
594
|
|
|
706
|
-
|
|
595
|
+
> **func**(`options`): `Promise`\<`any`\>
|
|
707
596
|
|
|
708
597
|
#### Parameters
|
|
709
598
|
|
|
710
|
-
|
|
711
|
-
| :------ | :------ |
|
|
712
|
-
| `options` | `RpcMethodsClientFuncParams` |
|
|
599
|
+
• **options**: `RpcMethodsClientFuncParams`
|
|
713
600
|
|
|
714
601
|
#### Returns
|
|
715
602
|
|
|
@@ -717,19 +604,17 @@ ___
|
|
|
717
604
|
|
|
718
605
|
#### Defined in
|
|
719
606
|
|
|
720
|
-
[packages/ai-tool/src/rpc-methods-client-tool.ts:19](https://github.com/isdk/ai-tool.js/blob/
|
|
607
|
+
[packages/ai-tool/src/rpc-methods-client-tool.ts:19](https://github.com/isdk/ai-tool.js/blob/5f9f0083c734722103ff5468e424b48c212a55f0/src/rpc-methods-client-tool.ts#L19)
|
|
721
608
|
|
|
722
|
-
|
|
609
|
+
***
|
|
723
610
|
|
|
724
|
-
### get
|
|
611
|
+
### get()?
|
|
725
612
|
|
|
726
|
-
|
|
613
|
+
> `optional` **get**(`__namedParameters`): `any`
|
|
727
614
|
|
|
728
615
|
#### Parameters
|
|
729
616
|
|
|
730
|
-
|
|
731
|
-
| :------ | :------ |
|
|
732
|
-
| `«destructured»` | [`ResClientFuncParams`](../interfaces/ResClientFuncParams.md) |
|
|
617
|
+
• **\_\_namedParameters**: [`ResClientFuncParams`](../interfaces/ResClientFuncParams.md)
|
|
733
618
|
|
|
734
619
|
#### Returns
|
|
735
620
|
|
|
@@ -737,19 +622,17 @@ ___
|
|
|
737
622
|
|
|
738
623
|
#### Defined in
|
|
739
624
|
|
|
740
|
-
[packages/ai-tool/src/res-client-tools.ts:10](https://github.com/isdk/ai-tool.js/blob/
|
|
625
|
+
[packages/ai-tool/src/res-client-tools.ts:10](https://github.com/isdk/ai-tool.js/blob/5f9f0083c734722103ff5468e424b48c212a55f0/src/res-client-tools.ts#L10)
|
|
741
626
|
|
|
742
|
-
|
|
627
|
+
***
|
|
743
628
|
|
|
744
|
-
### getFunc
|
|
629
|
+
### getFunc()
|
|
745
630
|
|
|
746
|
-
|
|
631
|
+
> **getFunc**(`name`?): `any`
|
|
747
632
|
|
|
748
633
|
#### Parameters
|
|
749
634
|
|
|
750
|
-
|
|
751
|
-
| :------ | :------ |
|
|
752
|
-
| `name?` | `string` |
|
|
635
|
+
• **name?**: `string`
|
|
753
636
|
|
|
754
637
|
#### Returns
|
|
755
638
|
|
|
@@ -757,19 +640,17 @@ ___
|
|
|
757
640
|
|
|
758
641
|
#### Defined in
|
|
759
642
|
|
|
760
|
-
[packages/ai-tool/src/tool-func.ts:307](https://github.com/isdk/ai-tool.js/blob/
|
|
643
|
+
[packages/ai-tool/src/tool-func.ts:307](https://github.com/isdk/ai-tool.js/blob/5f9f0083c734722103ff5468e424b48c212a55f0/src/tool-func.ts#L307)
|
|
761
644
|
|
|
762
|
-
|
|
645
|
+
***
|
|
763
646
|
|
|
764
|
-
### getFuncWithPos
|
|
647
|
+
### getFuncWithPos()
|
|
765
648
|
|
|
766
|
-
|
|
649
|
+
> **getFuncWithPos**(`name`?): `any`
|
|
767
650
|
|
|
768
651
|
#### Parameters
|
|
769
652
|
|
|
770
|
-
|
|
771
|
-
| :------ | :------ |
|
|
772
|
-
| `name?` | `string` |
|
|
653
|
+
• **name?**: `string`
|
|
773
654
|
|
|
774
655
|
#### Returns
|
|
775
656
|
|
|
@@ -777,13 +658,13 @@ ___
|
|
|
777
658
|
|
|
778
659
|
#### Defined in
|
|
779
660
|
|
|
780
|
-
[packages/ai-tool/src/tool-func.ts:331](https://github.com/isdk/ai-tool.js/blob/
|
|
661
|
+
[packages/ai-tool/src/tool-func.ts:331](https://github.com/isdk/ai-tool.js/blob/5f9f0083c734722103ff5468e424b48c212a55f0/src/tool-func.ts#L331)
|
|
781
662
|
|
|
782
|
-
|
|
663
|
+
***
|
|
783
664
|
|
|
784
|
-
### getProperties
|
|
665
|
+
### getProperties()
|
|
785
666
|
|
|
786
|
-
|
|
667
|
+
> `abstract` **getProperties**(): `PropDescriptors`
|
|
787
668
|
|
|
788
669
|
Get the defined attributes.
|
|
789
670
|
|
|
@@ -793,23 +674,19 @@ Get the defined attributes.
|
|
|
793
674
|
|
|
794
675
|
the descriptors of properties object
|
|
795
676
|
|
|
796
|
-
**`Abstract`**
|
|
797
|
-
|
|
798
677
|
#### Defined in
|
|
799
678
|
|
|
800
|
-
|
|
679
|
+
node\_modules/.pnpm/property-manager@2.0.0/node\_modules/property-manager/lib/abstract.d.ts:98
|
|
801
680
|
|
|
802
|
-
|
|
681
|
+
***
|
|
803
682
|
|
|
804
|
-
### getUrlParams
|
|
683
|
+
### getUrlParams()
|
|
805
684
|
|
|
806
|
-
|
|
685
|
+
> **getUrlParams**(`objParam`): `string`
|
|
807
686
|
|
|
808
687
|
#### Parameters
|
|
809
688
|
|
|
810
|
-
|
|
811
|
-
| :------ | :------ |
|
|
812
|
-
| `objParam` | `any` |
|
|
689
|
+
• **objParam**: `any`
|
|
813
690
|
|
|
814
691
|
#### Returns
|
|
815
692
|
|
|
@@ -817,19 +694,17 @@ ___
|
|
|
817
694
|
|
|
818
695
|
#### Defined in
|
|
819
696
|
|
|
820
|
-
[packages/ai-tool/src/client-tools.ts:63](https://github.com/isdk/ai-tool.js/blob/
|
|
697
|
+
[packages/ai-tool/src/client-tools.ts:63](https://github.com/isdk/ai-tool.js/blob/5f9f0083c734722103ff5468e424b48c212a55f0/src/client-tools.ts#L63)
|
|
821
698
|
|
|
822
|
-
|
|
699
|
+
***
|
|
823
700
|
|
|
824
|
-
### hasAsyncFeature
|
|
701
|
+
### hasAsyncFeature()
|
|
825
702
|
|
|
826
|
-
|
|
703
|
+
> **hasAsyncFeature**(`feature`): `boolean`
|
|
827
704
|
|
|
828
705
|
#### Parameters
|
|
829
706
|
|
|
830
|
-
|
|
831
|
-
| :------ | :------ |
|
|
832
|
-
| `feature` | [`AsyncFeatureBits`](../enums/AsyncFeatureBits.md) |
|
|
707
|
+
• **feature**: [`AsyncFeatureBits`](../enumerations/AsyncFeatureBits.md)
|
|
833
708
|
|
|
834
709
|
#### Returns
|
|
835
710
|
|
|
@@ -837,21 +712,21 @@ ___
|
|
|
837
712
|
|
|
838
713
|
#### Defined in
|
|
839
714
|
|
|
840
|
-
[packages/ai-tool/src/tool-func.ts:336](https://github.com/isdk/ai-tool.js/blob/
|
|
715
|
+
[packages/ai-tool/src/tool-func.ts:336](https://github.com/isdk/ai-tool.js/blob/5f9f0083c734722103ff5468e424b48c212a55f0/src/tool-func.ts#L336)
|
|
841
716
|
|
|
842
|
-
|
|
717
|
+
***
|
|
843
718
|
|
|
844
|
-
### hasOwnProperty
|
|
719
|
+
### hasOwnProperty()
|
|
845
720
|
|
|
846
|
-
|
|
721
|
+
> **hasOwnProperty**(`v`): `boolean`
|
|
847
722
|
|
|
848
723
|
Determines whether an object has a property with the specified name.
|
|
849
724
|
|
|
850
725
|
#### Parameters
|
|
851
726
|
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
727
|
+
• **v**: `PropertyKey`
|
|
728
|
+
|
|
729
|
+
A property name.
|
|
855
730
|
|
|
856
731
|
#### Returns
|
|
857
732
|
|
|
@@ -859,21 +734,19 @@ Determines whether an object has a property with the specified name.
|
|
|
859
734
|
|
|
860
735
|
#### Defined in
|
|
861
736
|
|
|
862
|
-
|
|
737
|
+
node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es5.d.ts:140
|
|
863
738
|
|
|
864
|
-
|
|
739
|
+
***
|
|
865
740
|
|
|
866
|
-
### initialize
|
|
741
|
+
### initialize()
|
|
867
742
|
|
|
868
|
-
|
|
743
|
+
> **initialize**(`src`?): `this`
|
|
869
744
|
|
|
870
745
|
Initialize object and assign attribute values from src if src exists.
|
|
871
746
|
|
|
872
747
|
#### Parameters
|
|
873
748
|
|
|
874
|
-
|
|
875
|
-
| :------ | :------ |
|
|
876
|
-
| `src?` | `any` |
|
|
749
|
+
• **src?**: `any`
|
|
877
750
|
|
|
878
751
|
#### Returns
|
|
879
752
|
|
|
@@ -883,21 +756,21 @@ this object.
|
|
|
883
756
|
|
|
884
757
|
#### Defined in
|
|
885
758
|
|
|
886
|
-
|
|
759
|
+
node\_modules/.pnpm/property-manager@2.0.0/node\_modules/property-manager/lib/abstract.d.ts:139
|
|
887
760
|
|
|
888
|
-
|
|
761
|
+
***
|
|
889
762
|
|
|
890
|
-
### isPrototypeOf
|
|
763
|
+
### isPrototypeOf()
|
|
891
764
|
|
|
892
|
-
|
|
765
|
+
> **isPrototypeOf**(`v`): `boolean`
|
|
893
766
|
|
|
894
767
|
Determines whether an object exists in another object's prototype chain.
|
|
895
768
|
|
|
896
769
|
#### Parameters
|
|
897
770
|
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
771
|
+
• **v**: `Object`
|
|
772
|
+
|
|
773
|
+
Another object whose prototype chain is to be checked.
|
|
901
774
|
|
|
902
775
|
#### Returns
|
|
903
776
|
|
|
@@ -905,22 +778,23 @@ Determines whether an object exists in another object's prototype chain.
|
|
|
905
778
|
|
|
906
779
|
#### Defined in
|
|
907
780
|
|
|
908
|
-
|
|
781
|
+
node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es5.d.ts:146
|
|
909
782
|
|
|
910
|
-
|
|
783
|
+
***
|
|
911
784
|
|
|
912
|
-
### isSame
|
|
785
|
+
### isSame()
|
|
913
786
|
|
|
914
|
-
|
|
787
|
+
> **isSame**(`src`, `options`?): `boolean`
|
|
915
788
|
|
|
916
789
|
Check the src object whether “equals” this object.
|
|
917
790
|
|
|
918
791
|
#### Parameters
|
|
919
792
|
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
793
|
+
• **src**: `any`
|
|
794
|
+
|
|
795
|
+
The source object
|
|
796
|
+
|
|
797
|
+
• **options?**: `IMergeOptions`
|
|
924
798
|
|
|
925
799
|
#### Returns
|
|
926
800
|
|
|
@@ -928,19 +802,17 @@ Check the src object whether “equals” this object.
|
|
|
928
802
|
|
|
929
803
|
#### Defined in
|
|
930
804
|
|
|
931
|
-
|
|
805
|
+
node\_modules/.pnpm/property-manager@2.0.0/node\_modules/property-manager/lib/abstract.d.ts:200
|
|
932
806
|
|
|
933
|
-
|
|
807
|
+
***
|
|
934
808
|
|
|
935
|
-
### isStream
|
|
809
|
+
### isStream()
|
|
936
810
|
|
|
937
|
-
|
|
811
|
+
> **isStream**(`params`): `undefined` \| `boolean`
|
|
938
812
|
|
|
939
813
|
#### Parameters
|
|
940
814
|
|
|
941
|
-
|
|
942
|
-
| :------ | :------ |
|
|
943
|
-
| `params` | `any` |
|
|
815
|
+
• **params**: `any`
|
|
944
816
|
|
|
945
817
|
#### Returns
|
|
946
818
|
|
|
@@ -948,19 +820,17 @@ ___
|
|
|
948
820
|
|
|
949
821
|
#### Defined in
|
|
950
822
|
|
|
951
|
-
[packages/ai-tool/src/tool-func.ts:342](https://github.com/isdk/ai-tool.js/blob/
|
|
823
|
+
[packages/ai-tool/src/tool-func.ts:342](https://github.com/isdk/ai-tool.js/blob/5f9f0083c734722103ff5468e424b48c212a55f0/src/tool-func.ts#L342)
|
|
952
824
|
|
|
953
|
-
|
|
825
|
+
***
|
|
954
826
|
|
|
955
|
-
### list
|
|
827
|
+
### list()?
|
|
956
828
|
|
|
957
|
-
|
|
829
|
+
> `optional` **list**(`options`): `any`
|
|
958
830
|
|
|
959
831
|
#### Parameters
|
|
960
832
|
|
|
961
|
-
|
|
962
|
-
| :------ | :------ |
|
|
963
|
-
| `options` | [`ResClientFuncParams`](../interfaces/ResClientFuncParams.md) |
|
|
833
|
+
• **options**: [`ResClientFuncParams`](../interfaces/ResClientFuncParams.md)
|
|
964
834
|
|
|
965
835
|
#### Returns
|
|
966
836
|
|
|
@@ -968,22 +838,23 @@ ___
|
|
|
968
838
|
|
|
969
839
|
#### Defined in
|
|
970
840
|
|
|
971
|
-
[packages/ai-tool/src/res-client-tools.ts:14](https://github.com/isdk/ai-tool.js/blob/
|
|
841
|
+
[packages/ai-tool/src/res-client-tools.ts:14](https://github.com/isdk/ai-tool.js/blob/5f9f0083c734722103ff5468e424b48c212a55f0/src/res-client-tools.ts#L14)
|
|
972
842
|
|
|
973
|
-
|
|
843
|
+
***
|
|
974
844
|
|
|
975
|
-
### mergeTo
|
|
845
|
+
### mergeTo()
|
|
976
846
|
|
|
977
|
-
|
|
847
|
+
> **mergeTo**(`dest`, `options`?): `any`
|
|
978
848
|
|
|
979
849
|
Merge this attributes to dest object.
|
|
980
850
|
|
|
981
851
|
#### Parameters
|
|
982
852
|
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
853
|
+
• **dest**: `any`
|
|
854
|
+
|
|
855
|
+
The destination object
|
|
856
|
+
|
|
857
|
+
• **options?**: `IMergeOptions`
|
|
987
858
|
|
|
988
859
|
#### Returns
|
|
989
860
|
|
|
@@ -993,19 +864,17 @@ the dest object.
|
|
|
993
864
|
|
|
994
865
|
#### Defined in
|
|
995
866
|
|
|
996
|
-
|
|
867
|
+
node\_modules/.pnpm/property-manager@2.0.0/node\_modules/property-manager/lib/abstract.d.ts:164
|
|
997
868
|
|
|
998
|
-
|
|
869
|
+
***
|
|
999
870
|
|
|
1000
|
-
### obj2ArrParams
|
|
871
|
+
### obj2ArrParams()
|
|
1001
872
|
|
|
1002
|
-
|
|
873
|
+
> **obj2ArrParams**(`params`?): `any`[]
|
|
1003
874
|
|
|
1004
875
|
#### Parameters
|
|
1005
876
|
|
|
1006
|
-
|
|
1007
|
-
| :------ | :------ |
|
|
1008
|
-
| `params?` | `any` |
|
|
877
|
+
• **params?**: `any`
|
|
1009
878
|
|
|
1010
879
|
#### Returns
|
|
1011
880
|
|
|
@@ -1013,19 +882,17 @@ ___
|
|
|
1013
882
|
|
|
1014
883
|
#### Defined in
|
|
1015
884
|
|
|
1016
|
-
[packages/ai-tool/src/tool-func.ts:267](https://github.com/isdk/ai-tool.js/blob/
|
|
885
|
+
[packages/ai-tool/src/tool-func.ts:267](https://github.com/isdk/ai-tool.js/blob/5f9f0083c734722103ff5468e424b48c212a55f0/src/tool-func.ts#L267)
|
|
1017
886
|
|
|
1018
|
-
|
|
887
|
+
***
|
|
1019
888
|
|
|
1020
|
-
### post
|
|
889
|
+
### post()?
|
|
1021
890
|
|
|
1022
|
-
|
|
891
|
+
> `optional` **post**(`options`): `any`
|
|
1023
892
|
|
|
1024
893
|
#### Parameters
|
|
1025
894
|
|
|
1026
|
-
|
|
1027
|
-
| :------ | :------ |
|
|
1028
|
-
| `options` | [`ResClientFuncParams`](../interfaces/ResClientFuncParams.md) |
|
|
895
|
+
• **options**: [`ResClientFuncParams`](../interfaces/ResClientFuncParams.md)
|
|
1029
896
|
|
|
1030
897
|
#### Returns
|
|
1031
898
|
|
|
@@ -1033,21 +900,21 @@ ___
|
|
|
1033
900
|
|
|
1034
901
|
#### Defined in
|
|
1035
902
|
|
|
1036
|
-
[packages/ai-tool/src/res-client-tools.ts:11](https://github.com/isdk/ai-tool.js/blob/
|
|
903
|
+
[packages/ai-tool/src/res-client-tools.ts:11](https://github.com/isdk/ai-tool.js/blob/5f9f0083c734722103ff5468e424b48c212a55f0/src/res-client-tools.ts#L11)
|
|
1037
904
|
|
|
1038
|
-
|
|
905
|
+
***
|
|
1039
906
|
|
|
1040
|
-
### propertyIsEnumerable
|
|
907
|
+
### propertyIsEnumerable()
|
|
1041
908
|
|
|
1042
|
-
|
|
909
|
+
> **propertyIsEnumerable**(`v`): `boolean`
|
|
1043
910
|
|
|
1044
911
|
Determines whether a specified property is enumerable.
|
|
1045
912
|
|
|
1046
913
|
#### Parameters
|
|
1047
914
|
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
915
|
+
• **v**: `PropertyKey`
|
|
916
|
+
|
|
917
|
+
A property name.
|
|
1051
918
|
|
|
1052
919
|
#### Returns
|
|
1053
920
|
|
|
@@ -1055,19 +922,17 @@ Determines whether a specified property is enumerable.
|
|
|
1055
922
|
|
|
1056
923
|
#### Defined in
|
|
1057
924
|
|
|
1058
|
-
|
|
925
|
+
node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es5.d.ts:152
|
|
1059
926
|
|
|
1060
|
-
|
|
927
|
+
***
|
|
1061
928
|
|
|
1062
|
-
### put
|
|
929
|
+
### put()?
|
|
1063
930
|
|
|
1064
|
-
|
|
931
|
+
> `optional` **put**(`__namedParameters`): `any`
|
|
1065
932
|
|
|
1066
933
|
#### Parameters
|
|
1067
934
|
|
|
1068
|
-
|
|
1069
|
-
| :------ | :------ |
|
|
1070
|
-
| `«destructured»` | [`ResClientFuncParams`](../interfaces/ResClientFuncParams.md) |
|
|
935
|
+
• **\_\_namedParameters**: [`ResClientFuncParams`](../interfaces/ResClientFuncParams.md)
|
|
1071
936
|
|
|
1072
937
|
#### Returns
|
|
1073
938
|
|
|
@@ -1075,13 +940,13 @@ ___
|
|
|
1075
940
|
|
|
1076
941
|
#### Defined in
|
|
1077
942
|
|
|
1078
|
-
[packages/ai-tool/src/res-client-tools.ts:12](https://github.com/isdk/ai-tool.js/blob/
|
|
943
|
+
[packages/ai-tool/src/res-client-tools.ts:12](https://github.com/isdk/ai-tool.js/blob/5f9f0083c734722103ff5468e424b48c212a55f0/src/res-client-tools.ts#L12)
|
|
1079
944
|
|
|
1080
|
-
|
|
945
|
+
***
|
|
1081
946
|
|
|
1082
|
-
### register
|
|
947
|
+
### register()
|
|
1083
948
|
|
|
1084
|
-
|
|
949
|
+
> **register**(): `boolean` \| [`ToolFunc`](ToolFunc.md)
|
|
1085
950
|
|
|
1086
951
|
#### Returns
|
|
1087
952
|
|
|
@@ -1089,19 +954,17 @@ ___
|
|
|
1089
954
|
|
|
1090
955
|
#### Defined in
|
|
1091
956
|
|
|
1092
|
-
[packages/ai-tool/src/tool-func.ts:237](https://github.com/isdk/ai-tool.js/blob/
|
|
957
|
+
[packages/ai-tool/src/tool-func.ts:237](https://github.com/isdk/ai-tool.js/blob/5f9f0083c734722103ff5468e424b48c212a55f0/src/tool-func.ts#L237)
|
|
1093
958
|
|
|
1094
|
-
|
|
959
|
+
***
|
|
1095
960
|
|
|
1096
|
-
### run
|
|
961
|
+
### run()
|
|
1097
962
|
|
|
1098
|
-
|
|
963
|
+
> **run**(`params`?): `Promise`\<`any`\>
|
|
1099
964
|
|
|
1100
965
|
#### Parameters
|
|
1101
966
|
|
|
1102
|
-
|
|
1103
|
-
| :------ | :------ |
|
|
1104
|
-
| `params?` | `any` |
|
|
967
|
+
• **params?**: `any`
|
|
1105
968
|
|
|
1106
969
|
#### Returns
|
|
1107
970
|
|
|
@@ -1109,20 +972,19 @@ ___
|
|
|
1109
972
|
|
|
1110
973
|
#### Defined in
|
|
1111
974
|
|
|
1112
|
-
[packages/ai-tool/src/tool-func.ts:294](https://github.com/isdk/ai-tool.js/blob/
|
|
975
|
+
[packages/ai-tool/src/tool-func.ts:294](https://github.com/isdk/ai-tool.js/blob/5f9f0083c734722103ff5468e424b48c212a55f0/src/tool-func.ts#L294)
|
|
1113
976
|
|
|
1114
|
-
|
|
977
|
+
***
|
|
1115
978
|
|
|
1116
|
-
### runAs
|
|
979
|
+
### runAs()
|
|
1117
980
|
|
|
1118
|
-
|
|
981
|
+
> **runAs**(`name`, `params`?): `Promise`\<`any`\>
|
|
1119
982
|
|
|
1120
983
|
#### Parameters
|
|
1121
984
|
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
| `params?` | `any` |
|
|
985
|
+
• **name**: `string`
|
|
986
|
+
|
|
987
|
+
• **params?**: `any`
|
|
1126
988
|
|
|
1127
989
|
#### Returns
|
|
1128
990
|
|
|
@@ -1130,20 +992,19 @@ ___
|
|
|
1130
992
|
|
|
1131
993
|
#### Defined in
|
|
1132
994
|
|
|
1133
|
-
[packages/ai-tool/src/tool-func.ts:298](https://github.com/isdk/ai-tool.js/blob/
|
|
995
|
+
[packages/ai-tool/src/tool-func.ts:298](https://github.com/isdk/ai-tool.js/blob/5f9f0083c734722103ff5468e424b48c212a55f0/src/tool-func.ts#L298)
|
|
1134
996
|
|
|
1135
|
-
|
|
997
|
+
***
|
|
1136
998
|
|
|
1137
|
-
### runAsSync
|
|
999
|
+
### runAsSync()
|
|
1138
1000
|
|
|
1139
|
-
|
|
1001
|
+
> **runAsSync**(`name`, `params`?): `any`
|
|
1140
1002
|
|
|
1141
1003
|
#### Parameters
|
|
1142
1004
|
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
| `params?` | `any` |
|
|
1005
|
+
• **name**: `string`
|
|
1006
|
+
|
|
1007
|
+
• **params?**: `any`
|
|
1147
1008
|
|
|
1148
1009
|
#### Returns
|
|
1149
1010
|
|
|
@@ -1151,19 +1012,17 @@ ___
|
|
|
1151
1012
|
|
|
1152
1013
|
#### Defined in
|
|
1153
1014
|
|
|
1154
|
-
[packages/ai-tool/src/tool-func.ts:302](https://github.com/isdk/ai-tool.js/blob/
|
|
1015
|
+
[packages/ai-tool/src/tool-func.ts:302](https://github.com/isdk/ai-tool.js/blob/5f9f0083c734722103ff5468e424b48c212a55f0/src/tool-func.ts#L302)
|
|
1155
1016
|
|
|
1156
|
-
|
|
1017
|
+
***
|
|
1157
1018
|
|
|
1158
|
-
### runSync
|
|
1019
|
+
### runSync()
|
|
1159
1020
|
|
|
1160
|
-
|
|
1021
|
+
> **runSync**(`params`?): `any`
|
|
1161
1022
|
|
|
1162
1023
|
#### Parameters
|
|
1163
1024
|
|
|
1164
|
-
|
|
1165
|
-
| :------ | :------ |
|
|
1166
|
-
| `params?` | `any` |
|
|
1025
|
+
• **params?**: `any`
|
|
1167
1026
|
|
|
1168
1027
|
#### Returns
|
|
1169
1028
|
|
|
@@ -1171,19 +1030,17 @@ ___
|
|
|
1171
1030
|
|
|
1172
1031
|
#### Defined in
|
|
1173
1032
|
|
|
1174
|
-
[packages/ai-tool/src/tool-func.ts:280](https://github.com/isdk/ai-tool.js/blob/
|
|
1033
|
+
[packages/ai-tool/src/tool-func.ts:280](https://github.com/isdk/ai-tool.js/blob/5f9f0083c734722103ff5468e424b48c212a55f0/src/tool-func.ts#L280)
|
|
1175
1034
|
|
|
1176
|
-
|
|
1035
|
+
***
|
|
1177
1036
|
|
|
1178
|
-
### runWithPos
|
|
1037
|
+
### runWithPos()
|
|
1179
1038
|
|
|
1180
|
-
|
|
1039
|
+
> **runWithPos**(...`params`): `Promise`\<`any`\>
|
|
1181
1040
|
|
|
1182
1041
|
#### Parameters
|
|
1183
1042
|
|
|
1184
|
-
|
|
1185
|
-
| :------ | :------ |
|
|
1186
|
-
| `...params` | `any`[] |
|
|
1043
|
+
• ...**params**: `any`[]
|
|
1187
1044
|
|
|
1188
1045
|
#### Returns
|
|
1189
1046
|
|
|
@@ -1191,20 +1048,19 @@ ___
|
|
|
1191
1048
|
|
|
1192
1049
|
#### Defined in
|
|
1193
1050
|
|
|
1194
|
-
[packages/ai-tool/src/tool-func.ts:323](https://github.com/isdk/ai-tool.js/blob/
|
|
1051
|
+
[packages/ai-tool/src/tool-func.ts:323](https://github.com/isdk/ai-tool.js/blob/5f9f0083c734722103ff5468e424b48c212a55f0/src/tool-func.ts#L323)
|
|
1195
1052
|
|
|
1196
|
-
|
|
1053
|
+
***
|
|
1197
1054
|
|
|
1198
|
-
### runWithPosAs
|
|
1055
|
+
### runWithPosAs()
|
|
1199
1056
|
|
|
1200
|
-
|
|
1057
|
+
> **runWithPosAs**(`name`, ...`params`): `Promise`\<`any`\>
|
|
1201
1058
|
|
|
1202
1059
|
#### Parameters
|
|
1203
1060
|
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
| `...params` | `any`[] |
|
|
1061
|
+
• **name**: `string`
|
|
1062
|
+
|
|
1063
|
+
• ...**params**: `any`[]
|
|
1208
1064
|
|
|
1209
1065
|
#### Returns
|
|
1210
1066
|
|
|
@@ -1212,20 +1068,19 @@ ___
|
|
|
1212
1068
|
|
|
1213
1069
|
#### Defined in
|
|
1214
1070
|
|
|
1215
|
-
[packages/ai-tool/src/tool-func.ts:327](https://github.com/isdk/ai-tool.js/blob/
|
|
1071
|
+
[packages/ai-tool/src/tool-func.ts:327](https://github.com/isdk/ai-tool.js/blob/5f9f0083c734722103ff5468e424b48c212a55f0/src/tool-func.ts#L327)
|
|
1216
1072
|
|
|
1217
|
-
|
|
1073
|
+
***
|
|
1218
1074
|
|
|
1219
|
-
### runWithPosAsSync
|
|
1075
|
+
### runWithPosAsSync()
|
|
1220
1076
|
|
|
1221
|
-
|
|
1077
|
+
> **runWithPosAsSync**(`name`, ...`params`): `any`
|
|
1222
1078
|
|
|
1223
1079
|
#### Parameters
|
|
1224
1080
|
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
| `...params` | `any`[] |
|
|
1081
|
+
• **name**: `string`
|
|
1082
|
+
|
|
1083
|
+
• ...**params**: `any`[]
|
|
1229
1084
|
|
|
1230
1085
|
#### Returns
|
|
1231
1086
|
|
|
@@ -1233,19 +1088,17 @@ ___
|
|
|
1233
1088
|
|
|
1234
1089
|
#### Defined in
|
|
1235
1090
|
|
|
1236
|
-
[packages/ai-tool/src/tool-func.ts:319](https://github.com/isdk/ai-tool.js/blob/
|
|
1091
|
+
[packages/ai-tool/src/tool-func.ts:319](https://github.com/isdk/ai-tool.js/blob/5f9f0083c734722103ff5468e424b48c212a55f0/src/tool-func.ts#L319)
|
|
1237
1092
|
|
|
1238
|
-
|
|
1093
|
+
***
|
|
1239
1094
|
|
|
1240
|
-
### runWithPosSync
|
|
1095
|
+
### runWithPosSync()
|
|
1241
1096
|
|
|
1242
|
-
|
|
1097
|
+
> **runWithPosSync**(...`params`): `any`
|
|
1243
1098
|
|
|
1244
1099
|
#### Parameters
|
|
1245
1100
|
|
|
1246
|
-
|
|
1247
|
-
| :------ | :------ |
|
|
1248
|
-
| `...params` | `any`[] |
|
|
1101
|
+
• ...**params**: `any`[]
|
|
1249
1102
|
|
|
1250
1103
|
#### Returns
|
|
1251
1104
|
|
|
@@ -1253,13 +1106,13 @@ ___
|
|
|
1253
1106
|
|
|
1254
1107
|
#### Defined in
|
|
1255
1108
|
|
|
1256
|
-
[packages/ai-tool/src/tool-func.ts:312](https://github.com/isdk/ai-tool.js/blob/
|
|
1109
|
+
[packages/ai-tool/src/tool-func.ts:312](https://github.com/isdk/ai-tool.js/blob/5f9f0083c734722103ff5468e424b48c212a55f0/src/tool-func.ts#L312)
|
|
1257
1110
|
|
|
1258
|
-
|
|
1111
|
+
***
|
|
1259
1112
|
|
|
1260
|
-
### toJSON
|
|
1113
|
+
### toJSON()
|
|
1261
1114
|
|
|
1262
|
-
|
|
1115
|
+
> **toJSON**(): `any`
|
|
1263
1116
|
|
|
1264
1117
|
#### Returns
|
|
1265
1118
|
|
|
@@ -1267,13 +1120,13 @@ ___
|
|
|
1267
1120
|
|
|
1268
1121
|
#### Defined in
|
|
1269
1122
|
|
|
1270
|
-
|
|
1123
|
+
node\_modules/.pnpm/property-manager@2.0.0/node\_modules/property-manager/lib/abstract.d.ts:182
|
|
1271
1124
|
|
|
1272
|
-
|
|
1125
|
+
***
|
|
1273
1126
|
|
|
1274
|
-
### toLocaleString
|
|
1127
|
+
### toLocaleString()
|
|
1275
1128
|
|
|
1276
|
-
|
|
1129
|
+
> **toLocaleString**(): `string`
|
|
1277
1130
|
|
|
1278
1131
|
Returns a date converted to a string using the current locale.
|
|
1279
1132
|
|
|
@@ -1283,21 +1136,19 @@ Returns a date converted to a string using the current locale.
|
|
|
1283
1136
|
|
|
1284
1137
|
#### Defined in
|
|
1285
1138
|
|
|
1286
|
-
|
|
1139
|
+
node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es5.d.ts:131
|
|
1287
1140
|
|
|
1288
|
-
|
|
1141
|
+
***
|
|
1289
1142
|
|
|
1290
|
-
### toObject
|
|
1143
|
+
### toObject()
|
|
1291
1144
|
|
|
1292
|
-
|
|
1145
|
+
> **toObject**(`options`?): `any`
|
|
1293
1146
|
|
|
1294
1147
|
Convert the attributes to the json object
|
|
1295
1148
|
|
|
1296
1149
|
#### Parameters
|
|
1297
1150
|
|
|
1298
|
-
|
|
1299
|
-
| :------ | :------ |
|
|
1300
|
-
| `options?` | `any` |
|
|
1151
|
+
• **options?**: `any`
|
|
1301
1152
|
|
|
1302
1153
|
#### Returns
|
|
1303
1154
|
|
|
@@ -1307,13 +1158,13 @@ the json object.
|
|
|
1307
1158
|
|
|
1308
1159
|
#### Defined in
|
|
1309
1160
|
|
|
1310
|
-
|
|
1161
|
+
node\_modules/.pnpm/property-manager@2.0.0/node\_modules/property-manager/lib/abstract.d.ts:181
|
|
1311
1162
|
|
|
1312
|
-
|
|
1163
|
+
***
|
|
1313
1164
|
|
|
1314
|
-
### toString
|
|
1165
|
+
### toString()
|
|
1315
1166
|
|
|
1316
|
-
|
|
1167
|
+
> **toString**(): `string`
|
|
1317
1168
|
|
|
1318
1169
|
Returns a string representation of an object.
|
|
1319
1170
|
|
|
@@ -1323,13 +1174,13 @@ Returns a string representation of an object.
|
|
|
1323
1174
|
|
|
1324
1175
|
#### Defined in
|
|
1325
1176
|
|
|
1326
|
-
|
|
1177
|
+
node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es5.d.ts:128
|
|
1327
1178
|
|
|
1328
|
-
|
|
1179
|
+
***
|
|
1329
1180
|
|
|
1330
|
-
### unregister
|
|
1181
|
+
### unregister()
|
|
1331
1182
|
|
|
1332
|
-
|
|
1183
|
+
> **unregister**(): `any`
|
|
1333
1184
|
|
|
1334
1185
|
#### Returns
|
|
1335
1186
|
|
|
@@ -1337,13 +1188,13 @@ ___
|
|
|
1337
1188
|
|
|
1338
1189
|
#### Defined in
|
|
1339
1190
|
|
|
1340
|
-
[packages/ai-tool/src/tool-func.ts:250](https://github.com/isdk/ai-tool.js/blob/
|
|
1191
|
+
[packages/ai-tool/src/tool-func.ts:250](https://github.com/isdk/ai-tool.js/blob/5f9f0083c734722103ff5468e424b48c212a55f0/src/tool-func.ts#L250)
|
|
1341
1192
|
|
|
1342
|
-
|
|
1193
|
+
***
|
|
1343
1194
|
|
|
1344
|
-
### valueOf
|
|
1195
|
+
### valueOf()
|
|
1345
1196
|
|
|
1346
|
-
|
|
1197
|
+
> **valueOf**(): `Object`
|
|
1347
1198
|
|
|
1348
1199
|
Returns the primitive value of the specified object.
|
|
1349
1200
|
|
|
@@ -1353,173 +1204,211 @@ Returns the primitive value of the specified object.
|
|
|
1353
1204
|
|
|
1354
1205
|
#### Defined in
|
|
1355
1206
|
|
|
1356
|
-
|
|
1207
|
+
node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es5.d.ts:134
|
|
1208
|
+
|
|
1209
|
+
***
|
|
1357
1210
|
|
|
1358
|
-
|
|
1211
|
+
### assign()
|
|
1359
1212
|
|
|
1360
|
-
|
|
1213
|
+
#### assign(target, source)
|
|
1361
1214
|
|
|
1362
|
-
|
|
1215
|
+
> `static` **assign**\<`T`, `U`\>(`target`, `source`): `T` & `U`
|
|
1363
1216
|
|
|
1364
1217
|
Copy the values of all of the enumerable own properties from one or more source objects to a
|
|
1365
1218
|
target object. Returns the target object.
|
|
1366
1219
|
|
|
1367
|
-
|
|
1220
|
+
##### Type Parameters
|
|
1368
1221
|
|
|
1369
|
-
|
|
1370
|
-
| :------ | :------ |
|
|
1371
|
-
| `T` | extends `Object` |
|
|
1372
|
-
| `U` | `U` |
|
|
1222
|
+
• **T** *extends* `object`
|
|
1373
1223
|
|
|
1374
|
-
|
|
1224
|
+
• **U**
|
|
1225
|
+
|
|
1226
|
+
##### Parameters
|
|
1375
1227
|
|
|
1376
|
-
|
|
1377
|
-
| :------ | :------ | :------ |
|
|
1378
|
-
| `target` | `T` | The target object to copy to. |
|
|
1379
|
-
| `source` | `U` | The source object from which to copy properties. |
|
|
1228
|
+
• **target**: `T`
|
|
1380
1229
|
|
|
1381
|
-
|
|
1230
|
+
The target object to copy to.
|
|
1231
|
+
|
|
1232
|
+
• **source**: `U`
|
|
1233
|
+
|
|
1234
|
+
The source object from which to copy properties.
|
|
1235
|
+
|
|
1236
|
+
##### Returns
|
|
1382
1237
|
|
|
1383
1238
|
`T` & `U`
|
|
1384
1239
|
|
|
1385
|
-
|
|
1240
|
+
##### Defined in
|
|
1241
|
+
|
|
1242
|
+
node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es2015.core.d.ts:286
|
|
1386
1243
|
|
|
1387
|
-
|
|
1244
|
+
#### assign(target, source1, source2)
|
|
1388
1245
|
|
|
1389
|
-
|
|
1246
|
+
> `static` **assign**\<`T`, `U`, `V`\>(`target`, `source1`, `source2`): `T` & `U` & `V`
|
|
1390
1247
|
|
|
1391
1248
|
Copy the values of all of the enumerable own properties from one or more source objects to a
|
|
1392
1249
|
target object. Returns the target object.
|
|
1393
1250
|
|
|
1394
|
-
|
|
1251
|
+
##### Type Parameters
|
|
1395
1252
|
|
|
1396
|
-
|
|
1397
|
-
| :------ | :------ |
|
|
1398
|
-
| `T` | extends `Object` |
|
|
1399
|
-
| `U` | `U` |
|
|
1400
|
-
| `V` | `V` |
|
|
1253
|
+
• **T** *extends* `object`
|
|
1401
1254
|
|
|
1402
|
-
|
|
1255
|
+
• **U**
|
|
1403
1256
|
|
|
1404
|
-
|
|
1405
|
-
| :------ | :------ | :------ |
|
|
1406
|
-
| `target` | `T` | The target object to copy to. |
|
|
1407
|
-
| `source1` | `U` | The first source object from which to copy properties. |
|
|
1408
|
-
| `source2` | `V` | The second source object from which to copy properties. |
|
|
1257
|
+
• **V**
|
|
1409
1258
|
|
|
1410
|
-
|
|
1259
|
+
##### Parameters
|
|
1260
|
+
|
|
1261
|
+
• **target**: `T`
|
|
1262
|
+
|
|
1263
|
+
The target object to copy to.
|
|
1264
|
+
|
|
1265
|
+
• **source1**: `U`
|
|
1266
|
+
|
|
1267
|
+
The first source object from which to copy properties.
|
|
1268
|
+
|
|
1269
|
+
• **source2**: `V`
|
|
1270
|
+
|
|
1271
|
+
The second source object from which to copy properties.
|
|
1272
|
+
|
|
1273
|
+
##### Returns
|
|
1411
1274
|
|
|
1412
1275
|
`T` & `U` & `V`
|
|
1413
1276
|
|
|
1414
|
-
|
|
1277
|
+
##### Defined in
|
|
1415
1278
|
|
|
1416
|
-
|
|
1279
|
+
node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es2015.core.d.ts:295
|
|
1417
1280
|
|
|
1418
|
-
|
|
1281
|
+
#### assign(target, source1, source2, source3)
|
|
1282
|
+
|
|
1283
|
+
> `static` **assign**\<`T`, `U`, `V`, `W`\>(`target`, `source1`, `source2`, `source3`): `T` & `U` & `V` & `W`
|
|
1419
1284
|
|
|
1420
1285
|
Copy the values of all of the enumerable own properties from one or more source objects to a
|
|
1421
1286
|
target object. Returns the target object.
|
|
1422
1287
|
|
|
1423
|
-
|
|
1288
|
+
##### Type Parameters
|
|
1424
1289
|
|
|
1425
|
-
|
|
1426
|
-
| :------ | :------ |
|
|
1427
|
-
| `T` | extends `Object` |
|
|
1428
|
-
| `U` | `U` |
|
|
1429
|
-
| `V` | `V` |
|
|
1430
|
-
| `W` | `W` |
|
|
1290
|
+
• **T** *extends* `object`
|
|
1431
1291
|
|
|
1432
|
-
|
|
1292
|
+
• **U**
|
|
1433
1293
|
|
|
1434
|
-
|
|
1435
|
-
| :------ | :------ | :------ |
|
|
1436
|
-
| `target` | `T` | The target object to copy to. |
|
|
1437
|
-
| `source1` | `U` | The first source object from which to copy properties. |
|
|
1438
|
-
| `source2` | `V` | The second source object from which to copy properties. |
|
|
1439
|
-
| `source3` | `W` | The third source object from which to copy properties. |
|
|
1294
|
+
• **V**
|
|
1440
1295
|
|
|
1441
|
-
|
|
1296
|
+
• **W**
|
|
1297
|
+
|
|
1298
|
+
##### Parameters
|
|
1299
|
+
|
|
1300
|
+
• **target**: `T`
|
|
1301
|
+
|
|
1302
|
+
The target object to copy to.
|
|
1303
|
+
|
|
1304
|
+
• **source1**: `U`
|
|
1305
|
+
|
|
1306
|
+
The first source object from which to copy properties.
|
|
1307
|
+
|
|
1308
|
+
• **source2**: `V`
|
|
1309
|
+
|
|
1310
|
+
The second source object from which to copy properties.
|
|
1311
|
+
|
|
1312
|
+
• **source3**: `W`
|
|
1313
|
+
|
|
1314
|
+
The third source object from which to copy properties.
|
|
1315
|
+
|
|
1316
|
+
##### Returns
|
|
1442
1317
|
|
|
1443
1318
|
`T` & `U` & `V` & `W`
|
|
1444
1319
|
|
|
1445
|
-
|
|
1320
|
+
##### Defined in
|
|
1446
1321
|
|
|
1447
|
-
|
|
1322
|
+
node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es2015.core.d.ts:305
|
|
1448
1323
|
|
|
1449
|
-
|
|
1324
|
+
#### assign(target, sources)
|
|
1325
|
+
|
|
1326
|
+
> `static` **assign**(`target`, ...`sources`): `any`
|
|
1450
1327
|
|
|
1451
1328
|
Copy the values of all of the enumerable own properties from one or more source objects to a
|
|
1452
1329
|
target object. Returns the target object.
|
|
1453
1330
|
|
|
1454
|
-
|
|
1331
|
+
##### Parameters
|
|
1455
1332
|
|
|
1456
|
-
|
|
1457
|
-
| :------ | :------ | :------ |
|
|
1458
|
-
| `target` | `object` | The target object to copy to. |
|
|
1459
|
-
| `...sources` | `any`[] | One or more source objects from which to copy properties |
|
|
1333
|
+
• **target**: `object`
|
|
1460
1334
|
|
|
1461
|
-
|
|
1335
|
+
The target object to copy to.
|
|
1336
|
+
|
|
1337
|
+
• ...**sources**: `any`[]
|
|
1338
|
+
|
|
1339
|
+
One or more source objects from which to copy properties
|
|
1340
|
+
|
|
1341
|
+
##### Returns
|
|
1462
1342
|
|
|
1463
1343
|
`any`
|
|
1464
1344
|
|
|
1465
|
-
|
|
1345
|
+
##### Defined in
|
|
1346
|
+
|
|
1347
|
+
node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es2015.core.d.ts:313
|
|
1466
1348
|
|
|
1467
|
-
|
|
1349
|
+
***
|
|
1468
1350
|
|
|
1469
|
-
|
|
1351
|
+
### create()
|
|
1470
1352
|
|
|
1471
|
-
|
|
1353
|
+
#### create(o)
|
|
1472
1354
|
|
|
1473
|
-
|
|
1355
|
+
> `static` **create**(`o`): `any`
|
|
1474
1356
|
|
|
1475
1357
|
Creates an object that has the specified prototype or that has null prototype.
|
|
1476
1358
|
|
|
1477
|
-
|
|
1359
|
+
##### Parameters
|
|
1478
1360
|
|
|
1479
|
-
|
|
1480
|
-
| :------ | :------ | :------ |
|
|
1481
|
-
| `o` | ``null`` \| `object` | Object to use as a prototype. May be null. |
|
|
1361
|
+
• **o**: `null` \| `object`
|
|
1482
1362
|
|
|
1483
|
-
|
|
1363
|
+
Object to use as a prototype. May be null.
|
|
1364
|
+
|
|
1365
|
+
##### Returns
|
|
1484
1366
|
|
|
1485
1367
|
`any`
|
|
1486
1368
|
|
|
1487
|
-
|
|
1369
|
+
##### Defined in
|
|
1488
1370
|
|
|
1489
|
-
|
|
1371
|
+
node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es5.d.ts:188
|
|
1490
1372
|
|
|
1491
|
-
|
|
1373
|
+
#### create(o, properties)
|
|
1374
|
+
|
|
1375
|
+
> `static` **create**(`o`, `properties`): `any`
|
|
1492
1376
|
|
|
1493
1377
|
Creates an object that has the specified prototype, and that optionally contains specified properties.
|
|
1494
1378
|
|
|
1495
|
-
|
|
1379
|
+
##### Parameters
|
|
1496
1380
|
|
|
1497
|
-
|
|
1498
|
-
| :------ | :------ | :------ |
|
|
1499
|
-
| `o` | ``null`` \| `object` | Object to use as a prototype. May be null |
|
|
1500
|
-
| `properties` | `PropertyDescriptorMap` & `ThisType`\<`any`\> | JavaScript object that contains one or more property descriptors. |
|
|
1381
|
+
• **o**: `null` \| `object`
|
|
1501
1382
|
|
|
1502
|
-
|
|
1383
|
+
Object to use as a prototype. May be null
|
|
1384
|
+
|
|
1385
|
+
• **properties**: `PropertyDescriptorMap` & `ThisType`\<`any`\>
|
|
1386
|
+
|
|
1387
|
+
JavaScript object that contains one or more property descriptors.
|
|
1388
|
+
|
|
1389
|
+
##### Returns
|
|
1503
1390
|
|
|
1504
1391
|
`any`
|
|
1505
1392
|
|
|
1506
|
-
|
|
1393
|
+
##### Defined in
|
|
1394
|
+
|
|
1395
|
+
node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es5.d.ts:195
|
|
1507
1396
|
|
|
1508
|
-
|
|
1397
|
+
***
|
|
1509
1398
|
|
|
1510
|
-
|
|
1399
|
+
### defineProperties()
|
|
1511
1400
|
|
|
1512
|
-
|
|
1401
|
+
> `static` **defineProperties**(`aTarget`, `aProperties`, `recreate`?): `any`
|
|
1513
1402
|
|
|
1514
|
-
|
|
1403
|
+
Adds one or more properties to an object, and/or modifies attributes of existing properties.
|
|
1515
1404
|
|
|
1516
1405
|
#### Parameters
|
|
1517
1406
|
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
|
|
1521
|
-
|
|
1522
|
-
|
|
1407
|
+
• **aTarget**: `any`
|
|
1408
|
+
|
|
1409
|
+
• **aProperties**: `PropDescriptors`
|
|
1410
|
+
|
|
1411
|
+
• **recreate?**: `boolean`
|
|
1523
1412
|
|
|
1524
1413
|
#### Returns
|
|
1525
1414
|
|
|
@@ -1527,29 +1416,33 @@ ___
|
|
|
1527
1416
|
|
|
1528
1417
|
#### Defined in
|
|
1529
1418
|
|
|
1530
|
-
|
|
1419
|
+
node\_modules/.pnpm/property-manager@2.0.0/node\_modules/property-manager/lib/advance.d.ts:11
|
|
1531
1420
|
|
|
1532
|
-
|
|
1421
|
+
***
|
|
1533
1422
|
|
|
1534
|
-
### defineProperty
|
|
1423
|
+
### defineProperty()
|
|
1535
1424
|
|
|
1536
|
-
|
|
1425
|
+
> `static` **defineProperty**\<`T`\>(`o`, `p`, `attributes`): `T`
|
|
1537
1426
|
|
|
1538
1427
|
Adds a property to an object, or modifies attributes of an existing property.
|
|
1539
1428
|
|
|
1540
|
-
#### Type
|
|
1429
|
+
#### Type Parameters
|
|
1541
1430
|
|
|
1542
|
-
|
|
1543
|
-
| :------ |
|
|
1544
|
-
| `T` |
|
|
1431
|
+
• **T**
|
|
1545
1432
|
|
|
1546
1433
|
#### Parameters
|
|
1547
1434
|
|
|
1548
|
-
|
|
1549
|
-
|
|
1550
|
-
|
|
1551
|
-
|
|
1552
|
-
|
|
1435
|
+
• **o**: `T`
|
|
1436
|
+
|
|
1437
|
+
Object on which to add or modify the property. This can be a native JavaScript object (that is, a user-defined object or a built in object) or a DOM object.
|
|
1438
|
+
|
|
1439
|
+
• **p**: `PropertyKey`
|
|
1440
|
+
|
|
1441
|
+
The property name.
|
|
1442
|
+
|
|
1443
|
+
• **attributes**: `PropertyDescriptor` & `ThisType`\<`any`\>
|
|
1444
|
+
|
|
1445
|
+
Descriptor for the property. It can be for a data property or an accessor property.
|
|
1553
1446
|
|
|
1554
1447
|
#### Returns
|
|
1555
1448
|
|
|
@@ -1557,66 +1450,67 @@ Adds a property to an object, or modifies attributes of an existing property.
|
|
|
1557
1450
|
|
|
1558
1451
|
#### Defined in
|
|
1559
1452
|
|
|
1560
|
-
|
|
1453
|
+
node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es5.d.ts:203
|
|
1561
1454
|
|
|
1562
|
-
|
|
1455
|
+
***
|
|
1563
1456
|
|
|
1564
|
-
### entries
|
|
1457
|
+
### entries()
|
|
1565
1458
|
|
|
1566
|
-
|
|
1459
|
+
#### entries(o)
|
|
1567
1460
|
|
|
1568
|
-
|
|
1461
|
+
> `static` **entries**\<`T`\>(`o`): [`string`, `T`][]
|
|
1569
1462
|
|
|
1570
|
-
|
|
1463
|
+
Returns an array of key/values of the enumerable own properties of an object
|
|
1571
1464
|
|
|
1572
|
-
|
|
1573
|
-
| :------ |
|
|
1574
|
-
| `T` |
|
|
1465
|
+
##### Type Parameters
|
|
1575
1466
|
|
|
1576
|
-
|
|
1467
|
+
• **T**
|
|
1468
|
+
|
|
1469
|
+
##### Parameters
|
|
1577
1470
|
|
|
1578
|
-
|
|
1579
|
-
| :------ | :------ | :------ |
|
|
1580
|
-
| `o` | \{ `[s: string]`: `T`; } \| `ArrayLike`\<`T`\> | Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object. |
|
|
1471
|
+
• **o**: `object` \| `ArrayLike`\<`T`\>
|
|
1581
1472
|
|
|
1582
|
-
|
|
1473
|
+
Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object.
|
|
1474
|
+
|
|
1475
|
+
##### Returns
|
|
1583
1476
|
|
|
1584
1477
|
[`string`, `T`][]
|
|
1585
1478
|
|
|
1586
|
-
|
|
1479
|
+
##### Defined in
|
|
1587
1480
|
|
|
1588
|
-
|
|
1481
|
+
node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es2017.object.d.ts:36
|
|
1589
1482
|
|
|
1590
|
-
|
|
1483
|
+
#### entries(o)
|
|
1591
1484
|
|
|
1592
|
-
|
|
1485
|
+
> `static` **entries**(`o`): [`string`, `any`][]
|
|
1593
1486
|
|
|
1594
|
-
|
|
1487
|
+
Returns an array of key/values of the enumerable own properties of an object
|
|
1595
1488
|
|
|
1596
|
-
|
|
1597
|
-
| :------ | :------ | :------ |
|
|
1598
|
-
| `o` | `Object` | Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object. |
|
|
1489
|
+
##### Parameters
|
|
1599
1490
|
|
|
1600
|
-
|
|
1491
|
+
• **o**
|
|
1492
|
+
|
|
1493
|
+
Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object.
|
|
1494
|
+
|
|
1495
|
+
##### Returns
|
|
1601
1496
|
|
|
1602
1497
|
[`string`, `any`][]
|
|
1603
1498
|
|
|
1604
|
-
|
|
1499
|
+
##### Defined in
|
|
1605
1500
|
|
|
1606
|
-
|
|
1501
|
+
node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es2017.object.d.ts:42
|
|
1607
1502
|
|
|
1608
|
-
|
|
1503
|
+
***
|
|
1609
1504
|
|
|
1610
|
-
### fetch
|
|
1505
|
+
### fetch()
|
|
1611
1506
|
|
|
1612
|
-
|
|
1507
|
+
> `static` **fetch**(`name`, `objParam`?): `Promise`\<`any`\>
|
|
1613
1508
|
|
|
1614
1509
|
#### Parameters
|
|
1615
1510
|
|
|
1616
|
-
|
|
1617
|
-
|
|
1618
|
-
|
|
1619
|
-
| `objParam?` | `any` |
|
|
1511
|
+
• **name**: `string`
|
|
1512
|
+
|
|
1513
|
+
• **objParam?**: `any`
|
|
1620
1514
|
|
|
1621
1515
|
#### Returns
|
|
1622
1516
|
|
|
@@ -1624,142 +1518,143 @@ ___
|
|
|
1624
1518
|
|
|
1625
1519
|
#### Defined in
|
|
1626
1520
|
|
|
1627
|
-
[packages/ai-tool/src/client-tools.ts:56](https://github.com/isdk/ai-tool.js/blob/
|
|
1521
|
+
[packages/ai-tool/src/client-tools.ts:56](https://github.com/isdk/ai-tool.js/blob/5f9f0083c734722103ff5468e424b48c212a55f0/src/client-tools.ts#L56)
|
|
1522
|
+
|
|
1523
|
+
***
|
|
1628
1524
|
|
|
1629
|
-
|
|
1525
|
+
### freeze()
|
|
1630
1526
|
|
|
1631
|
-
|
|
1527
|
+
#### freeze(f)
|
|
1632
1528
|
|
|
1633
|
-
|
|
1529
|
+
> `static` **freeze**\<`T`\>(`f`): `T`
|
|
1634
1530
|
|
|
1635
1531
|
Prevents the modification of existing property attributes and values, and prevents the addition of new properties.
|
|
1636
1532
|
|
|
1637
|
-
|
|
1533
|
+
##### Type Parameters
|
|
1638
1534
|
|
|
1639
|
-
|
|
1640
|
-
| :------ | :------ |
|
|
1641
|
-
| `T` | extends `Function` |
|
|
1535
|
+
• **T** *extends* `Function`
|
|
1642
1536
|
|
|
1643
|
-
|
|
1537
|
+
##### Parameters
|
|
1644
1538
|
|
|
1645
|
-
|
|
1646
|
-
| :------ | :------ | :------ |
|
|
1647
|
-
| `f` | `T` | Object on which to lock the attributes. |
|
|
1539
|
+
• **f**: `T`
|
|
1648
1540
|
|
|
1649
|
-
|
|
1541
|
+
Object on which to lock the attributes.
|
|
1542
|
+
|
|
1543
|
+
##### Returns
|
|
1650
1544
|
|
|
1651
1545
|
`T`
|
|
1652
1546
|
|
|
1653
|
-
|
|
1547
|
+
##### Defined in
|
|
1654
1548
|
|
|
1655
|
-
|
|
1549
|
+
node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es5.d.ts:222
|
|
1656
1550
|
|
|
1657
|
-
|
|
1551
|
+
#### freeze(o)
|
|
1552
|
+
|
|
1553
|
+
> `static` **freeze**\<`T`, `U`\>(`o`): `Readonly`\<`T`\>
|
|
1658
1554
|
|
|
1659
1555
|
Prevents the modification of existing property attributes and values, and prevents the addition of new properties.
|
|
1660
1556
|
|
|
1661
|
-
|
|
1557
|
+
##### Type Parameters
|
|
1662
1558
|
|
|
1663
|
-
|
|
1664
|
-
| :------ | :------ |
|
|
1665
|
-
| `T` | extends `Object` |
|
|
1666
|
-
| `U` | extends `string` \| `number` \| `bigint` \| `boolean` \| `symbol` |
|
|
1559
|
+
• **T** *extends* `object`
|
|
1667
1560
|
|
|
1668
|
-
|
|
1561
|
+
• **U** *extends* `string` \| `number` \| `bigint` \| `boolean` \| `symbol`
|
|
1669
1562
|
|
|
1670
|
-
|
|
1671
|
-
| :------ | :------ | :------ |
|
|
1672
|
-
| `o` | `T` | Object on which to lock the attributes. |
|
|
1563
|
+
##### Parameters
|
|
1673
1564
|
|
|
1674
|
-
|
|
1565
|
+
• **o**: `T`
|
|
1566
|
+
|
|
1567
|
+
Object on which to lock the attributes.
|
|
1568
|
+
|
|
1569
|
+
##### Returns
|
|
1675
1570
|
|
|
1676
1571
|
`Readonly`\<`T`\>
|
|
1677
1572
|
|
|
1678
|
-
|
|
1573
|
+
##### Defined in
|
|
1679
1574
|
|
|
1680
|
-
|
|
1575
|
+
node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es5.d.ts:228
|
|
1681
1576
|
|
|
1682
|
-
|
|
1577
|
+
#### freeze(o)
|
|
1578
|
+
|
|
1579
|
+
> `static` **freeze**\<`T`\>(`o`): `Readonly`\<`T`\>
|
|
1683
1580
|
|
|
1684
1581
|
Prevents the modification of existing property attributes and values, and prevents the addition of new properties.
|
|
1685
1582
|
|
|
1686
|
-
|
|
1583
|
+
##### Type Parameters
|
|
1687
1584
|
|
|
1688
|
-
|
|
1689
|
-
| :------ |
|
|
1690
|
-
| `T` |
|
|
1585
|
+
• **T**
|
|
1691
1586
|
|
|
1692
|
-
|
|
1587
|
+
##### Parameters
|
|
1693
1588
|
|
|
1694
|
-
|
|
1695
|
-
| :------ | :------ | :------ |
|
|
1696
|
-
| `o` | `T` | Object on which to lock the attributes. |
|
|
1589
|
+
• **o**: `T`
|
|
1697
1590
|
|
|
1698
|
-
|
|
1591
|
+
Object on which to lock the attributes.
|
|
1592
|
+
|
|
1593
|
+
##### Returns
|
|
1699
1594
|
|
|
1700
1595
|
`Readonly`\<`T`\>
|
|
1701
1596
|
|
|
1702
|
-
|
|
1597
|
+
##### Defined in
|
|
1598
|
+
|
|
1599
|
+
node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es5.d.ts:234
|
|
1703
1600
|
|
|
1704
|
-
|
|
1601
|
+
***
|
|
1705
1602
|
|
|
1706
|
-
|
|
1603
|
+
### fromEntries()
|
|
1707
1604
|
|
|
1708
|
-
|
|
1605
|
+
#### fromEntries(entries)
|
|
1709
1606
|
|
|
1710
|
-
|
|
1607
|
+
> `static` **fromEntries**\<`T`\>(`entries`): `object`
|
|
1711
1608
|
|
|
1712
1609
|
Returns an object created by key-value entries for properties and methods
|
|
1713
1610
|
|
|
1714
|
-
|
|
1611
|
+
##### Type Parameters
|
|
1715
1612
|
|
|
1716
|
-
|
|
1717
|
-
| :------ | :------ |
|
|
1718
|
-
| `T` | `any` |
|
|
1613
|
+
• **T** = `any`
|
|
1719
1614
|
|
|
1720
|
-
|
|
1615
|
+
##### Parameters
|
|
1721
1616
|
|
|
1722
|
-
|
|
1723
|
-
| :------ | :------ | :------ |
|
|
1724
|
-
| `entries` | `Iterable`\<readonly [`PropertyKey`, `T`]\> | An iterable object that contains key-value entries for properties and methods. |
|
|
1617
|
+
• **entries**: `Iterable`\<readonly [`PropertyKey`, `T`], `any`, `any`\>
|
|
1725
1618
|
|
|
1726
|
-
|
|
1619
|
+
An iterable object that contains key-value entries for properties and methods.
|
|
1727
1620
|
|
|
1728
|
-
|
|
1621
|
+
##### Returns
|
|
1729
1622
|
|
|
1730
|
-
|
|
1623
|
+
`object`
|
|
1731
1624
|
|
|
1732
|
-
|
|
1625
|
+
##### Defined in
|
|
1733
1626
|
|
|
1734
|
-
|
|
1627
|
+
node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es2019.object.d.ts:26
|
|
1628
|
+
|
|
1629
|
+
#### fromEntries(entries)
|
|
1630
|
+
|
|
1631
|
+
> `static` **fromEntries**(`entries`): `any`
|
|
1735
1632
|
|
|
1736
1633
|
Returns an object created by key-value entries for properties and methods
|
|
1737
1634
|
|
|
1738
|
-
|
|
1635
|
+
##### Parameters
|
|
1739
1636
|
|
|
1740
|
-
|
|
1741
|
-
| :------ | :------ | :------ |
|
|
1742
|
-
| `entries` | `Iterable`\<readonly `any`[]\> | An iterable object that contains key-value entries for properties and methods. |
|
|
1637
|
+
• **entries**: `Iterable`\<readonly `any`[], `any`, `any`\>
|
|
1743
1638
|
|
|
1744
|
-
|
|
1639
|
+
An iterable object that contains key-value entries for properties and methods.
|
|
1640
|
+
|
|
1641
|
+
##### Returns
|
|
1745
1642
|
|
|
1746
1643
|
`any`
|
|
1747
1644
|
|
|
1748
|
-
|
|
1645
|
+
##### Defined in
|
|
1749
1646
|
|
|
1750
|
-
|
|
1647
|
+
node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es2019.object.d.ts:32
|
|
1751
1648
|
|
|
1752
|
-
|
|
1649
|
+
***
|
|
1753
1650
|
|
|
1754
|
-
### get
|
|
1651
|
+
### get()
|
|
1755
1652
|
|
|
1756
|
-
|
|
1653
|
+
> `static` **get**(`name`): [`ToolFunc`](ToolFunc.md)
|
|
1757
1654
|
|
|
1758
1655
|
#### Parameters
|
|
1759
1656
|
|
|
1760
|
-
|
|
1761
|
-
| :------ | :------ |
|
|
1762
|
-
| `name` | `string` |
|
|
1657
|
+
• **name**: `string`
|
|
1763
1658
|
|
|
1764
1659
|
#### Returns
|
|
1765
1660
|
|
|
@@ -1767,19 +1662,17 @@ ___
|
|
|
1767
1662
|
|
|
1768
1663
|
#### Defined in
|
|
1769
1664
|
|
|
1770
|
-
[packages/ai-tool/src/tool-func.ts:77](https://github.com/isdk/ai-tool.js/blob/
|
|
1665
|
+
[packages/ai-tool/src/tool-func.ts:77](https://github.com/isdk/ai-tool.js/blob/5f9f0083c734722103ff5468e424b48c212a55f0/src/tool-func.ts#L77)
|
|
1771
1666
|
|
|
1772
|
-
|
|
1667
|
+
***
|
|
1773
1668
|
|
|
1774
|
-
### getAllByTag
|
|
1669
|
+
### getAllByTag()
|
|
1775
1670
|
|
|
1776
|
-
|
|
1671
|
+
> `static` **getAllByTag**(`tagName`): [`ToolFunc`](ToolFunc.md)[]
|
|
1777
1672
|
|
|
1778
1673
|
#### Parameters
|
|
1779
1674
|
|
|
1780
|
-
|
|
1781
|
-
| :------ | :------ |
|
|
1782
|
-
| `tagName` | `string` |
|
|
1675
|
+
• **tagName**: `string`
|
|
1783
1676
|
|
|
1784
1677
|
#### Returns
|
|
1785
1678
|
|
|
@@ -1787,19 +1680,17 @@ ___
|
|
|
1787
1680
|
|
|
1788
1681
|
#### Defined in
|
|
1789
1682
|
|
|
1790
|
-
[packages/ai-tool/src/tool-func.ts:105](https://github.com/isdk/ai-tool.js/blob/
|
|
1683
|
+
[packages/ai-tool/src/tool-func.ts:105](https://github.com/isdk/ai-tool.js/blob/5f9f0083c734722103ff5468e424b48c212a55f0/src/tool-func.ts#L105)
|
|
1791
1684
|
|
|
1792
|
-
|
|
1685
|
+
***
|
|
1793
1686
|
|
|
1794
|
-
### getByTag
|
|
1687
|
+
### getByTag()
|
|
1795
1688
|
|
|
1796
|
-
|
|
1689
|
+
> `static` **getByTag**(`tagName`): `undefined` \| [`ToolFunc`](ToolFunc.md)
|
|
1797
1690
|
|
|
1798
1691
|
#### Parameters
|
|
1799
1692
|
|
|
1800
|
-
|
|
1801
|
-
| :------ | :------ |
|
|
1802
|
-
| `tagName` | `string` |
|
|
1693
|
+
• **tagName**: `string`
|
|
1803
1694
|
|
|
1804
1695
|
#### Returns
|
|
1805
1696
|
|
|
@@ -1807,19 +1698,17 @@ ___
|
|
|
1807
1698
|
|
|
1808
1699
|
#### Defined in
|
|
1809
1700
|
|
|
1810
|
-
[packages/ai-tool/src/tool-func.ts:85](https://github.com/isdk/ai-tool.js/blob/
|
|
1701
|
+
[packages/ai-tool/src/tool-func.ts:85](https://github.com/isdk/ai-tool.js/blob/5f9f0083c734722103ff5468e424b48c212a55f0/src/tool-func.ts#L85)
|
|
1811
1702
|
|
|
1812
|
-
|
|
1703
|
+
***
|
|
1813
1704
|
|
|
1814
|
-
### getFunc
|
|
1705
|
+
### getFunc()
|
|
1815
1706
|
|
|
1816
|
-
|
|
1707
|
+
> `static` **getFunc**(`name`): `any`
|
|
1817
1708
|
|
|
1818
1709
|
#### Parameters
|
|
1819
1710
|
|
|
1820
|
-
|
|
1821
|
-
| :------ | :------ |
|
|
1822
|
-
| `name` | `string` |
|
|
1711
|
+
• **name**: `string`
|
|
1823
1712
|
|
|
1824
1713
|
#### Returns
|
|
1825
1714
|
|
|
@@ -1827,19 +1716,17 @@ ___
|
|
|
1827
1716
|
|
|
1828
1717
|
#### Defined in
|
|
1829
1718
|
|
|
1830
|
-
[packages/ai-tool/src/tool-func.ts:146](https://github.com/isdk/ai-tool.js/blob/
|
|
1719
|
+
[packages/ai-tool/src/tool-func.ts:146](https://github.com/isdk/ai-tool.js/blob/5f9f0083c734722103ff5468e424b48c212a55f0/src/tool-func.ts#L146)
|
|
1831
1720
|
|
|
1832
|
-
|
|
1721
|
+
***
|
|
1833
1722
|
|
|
1834
|
-
### getFuncWithPos
|
|
1723
|
+
### getFuncWithPos()
|
|
1835
1724
|
|
|
1836
|
-
|
|
1725
|
+
> `static` **getFuncWithPos**(`name`): `any`
|
|
1837
1726
|
|
|
1838
1727
|
#### Parameters
|
|
1839
1728
|
|
|
1840
|
-
|
|
1841
|
-
| :------ | :------ |
|
|
1842
|
-
| `name` | `string` |
|
|
1729
|
+
• **name**: `string`
|
|
1843
1730
|
|
|
1844
1731
|
#### Returns
|
|
1845
1732
|
|
|
@@ -1847,23 +1734,26 @@ ___
|
|
|
1847
1734
|
|
|
1848
1735
|
#### Defined in
|
|
1849
1736
|
|
|
1850
|
-
[packages/ai-tool/src/tool-func.ts:167](https://github.com/isdk/ai-tool.js/blob/
|
|
1737
|
+
[packages/ai-tool/src/tool-func.ts:167](https://github.com/isdk/ai-tool.js/blob/5f9f0083c734722103ff5468e424b48c212a55f0/src/tool-func.ts#L167)
|
|
1851
1738
|
|
|
1852
|
-
|
|
1739
|
+
***
|
|
1853
1740
|
|
|
1854
|
-
### getOwnPropertyDescriptor
|
|
1741
|
+
### getOwnPropertyDescriptor()
|
|
1855
1742
|
|
|
1856
|
-
|
|
1743
|
+
> `static` **getOwnPropertyDescriptor**(`o`, `p`): `undefined` \| `PropertyDescriptor`
|
|
1857
1744
|
|
|
1858
1745
|
Gets the own property descriptor of the specified object.
|
|
1859
1746
|
An own property descriptor is one that is defined directly on the object and is not inherited from the object's prototype.
|
|
1860
1747
|
|
|
1861
1748
|
#### Parameters
|
|
1862
1749
|
|
|
1863
|
-
|
|
1864
|
-
|
|
1865
|
-
|
|
1866
|
-
|
|
1750
|
+
• **o**: `any`
|
|
1751
|
+
|
|
1752
|
+
Object that contains the property.
|
|
1753
|
+
|
|
1754
|
+
• **p**: `PropertyKey`
|
|
1755
|
+
|
|
1756
|
+
Name of the property.
|
|
1867
1757
|
|
|
1868
1758
|
#### Returns
|
|
1869
1759
|
|
|
@@ -1871,50 +1761,48 @@ An own property descriptor is one that is defined directly on the object and is
|
|
|
1871
1761
|
|
|
1872
1762
|
#### Defined in
|
|
1873
1763
|
|
|
1874
|
-
|
|
1764
|
+
node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es5.d.ts:175
|
|
1875
1765
|
|
|
1876
|
-
|
|
1766
|
+
***
|
|
1877
1767
|
|
|
1878
|
-
### getOwnPropertyDescriptors
|
|
1768
|
+
### getOwnPropertyDescriptors()
|
|
1879
1769
|
|
|
1880
|
-
|
|
1770
|
+
> `static` **getOwnPropertyDescriptors**\<`T`\>(`o`): \{ \[P in string \| number \| symbol\]: TypedPropertyDescriptor\<T\[P\]\> \} & `object`
|
|
1881
1771
|
|
|
1882
1772
|
Returns an object containing all own property descriptors of an object
|
|
1883
1773
|
|
|
1884
|
-
#### Type
|
|
1774
|
+
#### Type Parameters
|
|
1885
1775
|
|
|
1886
|
-
|
|
1887
|
-
| :------ |
|
|
1888
|
-
| `T` |
|
|
1776
|
+
• **T**
|
|
1889
1777
|
|
|
1890
1778
|
#### Parameters
|
|
1891
1779
|
|
|
1892
|
-
|
|
1893
|
-
|
|
1894
|
-
|
|
1780
|
+
• **o**: `T`
|
|
1781
|
+
|
|
1782
|
+
Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object.
|
|
1895
1783
|
|
|
1896
1784
|
#### Returns
|
|
1897
1785
|
|
|
1898
|
-
\{ [P in string \| number \| symbol]: TypedPropertyDescriptor\<T[P]\> } &
|
|
1786
|
+
\{ \[P in string \| number \| symbol\]: TypedPropertyDescriptor\<T\[P\]\> \} & `object`
|
|
1899
1787
|
|
|
1900
1788
|
#### Defined in
|
|
1901
1789
|
|
|
1902
|
-
|
|
1790
|
+
node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es2017.object.d.ts:48
|
|
1903
1791
|
|
|
1904
|
-
|
|
1792
|
+
***
|
|
1905
1793
|
|
|
1906
|
-
### getOwnPropertyNames
|
|
1794
|
+
### getOwnPropertyNames()
|
|
1907
1795
|
|
|
1908
|
-
|
|
1796
|
+
> `static` **getOwnPropertyNames**(`o`): `string`[]
|
|
1909
1797
|
|
|
1910
1798
|
Returns the names of the own properties of an object. The own properties of an object are those that are defined directly
|
|
1911
1799
|
on that object, and are not inherited from the object's prototype. The properties of an object include both fields (objects) and functions.
|
|
1912
1800
|
|
|
1913
1801
|
#### Parameters
|
|
1914
1802
|
|
|
1915
|
-
|
|
1916
|
-
|
|
1917
|
-
|
|
1803
|
+
• **o**: `any`
|
|
1804
|
+
|
|
1805
|
+
Object that contains the own properties.
|
|
1918
1806
|
|
|
1919
1807
|
#### Returns
|
|
1920
1808
|
|
|
@@ -1922,21 +1810,21 @@ on that object, and are not inherited from the object's prototype. The propertie
|
|
|
1922
1810
|
|
|
1923
1811
|
#### Defined in
|
|
1924
1812
|
|
|
1925
|
-
|
|
1813
|
+
node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es5.d.ts:182
|
|
1926
1814
|
|
|
1927
|
-
|
|
1815
|
+
***
|
|
1928
1816
|
|
|
1929
|
-
### getOwnPropertySymbols
|
|
1817
|
+
### getOwnPropertySymbols()
|
|
1930
1818
|
|
|
1931
|
-
|
|
1819
|
+
> `static` **getOwnPropertySymbols**(`o`): `symbol`[]
|
|
1932
1820
|
|
|
1933
1821
|
Returns an array of all symbol properties found directly on object o.
|
|
1934
1822
|
|
|
1935
1823
|
#### Parameters
|
|
1936
1824
|
|
|
1937
|
-
|
|
1938
|
-
|
|
1939
|
-
|
|
1825
|
+
• **o**: `any`
|
|
1826
|
+
|
|
1827
|
+
Object to retrieve the symbols from.
|
|
1940
1828
|
|
|
1941
1829
|
#### Returns
|
|
1942
1830
|
|
|
@@ -1944,13 +1832,13 @@ Returns an array of all symbol properties found directly on object o.
|
|
|
1944
1832
|
|
|
1945
1833
|
#### Defined in
|
|
1946
1834
|
|
|
1947
|
-
|
|
1835
|
+
node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es2015.core.d.ts:319
|
|
1948
1836
|
|
|
1949
|
-
|
|
1837
|
+
***
|
|
1950
1838
|
|
|
1951
|
-
### getProperties
|
|
1839
|
+
### getProperties()
|
|
1952
1840
|
|
|
1953
|
-
|
|
1841
|
+
> `static` **getProperties**(): `PropDescriptors`
|
|
1954
1842
|
|
|
1955
1843
|
get all properties descriptor include inherited.
|
|
1956
1844
|
|
|
@@ -1960,21 +1848,21 @@ get all properties descriptor include inherited.
|
|
|
1960
1848
|
|
|
1961
1849
|
#### Defined in
|
|
1962
1850
|
|
|
1963
|
-
|
|
1851
|
+
node\_modules/.pnpm/property-manager@2.0.0/node\_modules/property-manager/lib/advance.d.ts:10
|
|
1964
1852
|
|
|
1965
|
-
|
|
1853
|
+
***
|
|
1966
1854
|
|
|
1967
|
-
### getPrototypeOf
|
|
1855
|
+
### getPrototypeOf()
|
|
1968
1856
|
|
|
1969
|
-
|
|
1857
|
+
> `static` **getPrototypeOf**(`o`): `any`
|
|
1970
1858
|
|
|
1971
1859
|
Returns the prototype of an object.
|
|
1972
1860
|
|
|
1973
1861
|
#### Parameters
|
|
1974
1862
|
|
|
1975
|
-
|
|
1976
|
-
|
|
1977
|
-
|
|
1863
|
+
• **o**: `any`
|
|
1864
|
+
|
|
1865
|
+
The object that references the prototype.
|
|
1978
1866
|
|
|
1979
1867
|
#### Returns
|
|
1980
1868
|
|
|
@@ -1982,19 +1870,17 @@ Returns the prototype of an object.
|
|
|
1982
1870
|
|
|
1983
1871
|
#### Defined in
|
|
1984
1872
|
|
|
1985
|
-
|
|
1873
|
+
node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es5.d.ts:167
|
|
1986
1874
|
|
|
1987
|
-
|
|
1875
|
+
***
|
|
1988
1876
|
|
|
1989
|
-
### hasAsyncFeature
|
|
1877
|
+
### hasAsyncFeature()
|
|
1990
1878
|
|
|
1991
|
-
|
|
1879
|
+
> `static` **hasAsyncFeature**(`feature`): `boolean`
|
|
1992
1880
|
|
|
1993
1881
|
#### Parameters
|
|
1994
1882
|
|
|
1995
|
-
|
|
1996
|
-
| :------ | :------ |
|
|
1997
|
-
| `feature` | [`AsyncFeatureBits`](../enums/AsyncFeatureBits.md) |
|
|
1883
|
+
• **feature**: [`AsyncFeatureBits`](../enumerations/AsyncFeatureBits.md)
|
|
1998
1884
|
|
|
1999
1885
|
#### Returns
|
|
2000
1886
|
|
|
@@ -2002,22 +1888,25 @@ ___
|
|
|
2002
1888
|
|
|
2003
1889
|
#### Defined in
|
|
2004
1890
|
|
|
2005
|
-
[packages/ai-tool/src/tool-func.ts:123](https://github.com/isdk/ai-tool.js/blob/
|
|
1891
|
+
[packages/ai-tool/src/tool-func.ts:123](https://github.com/isdk/ai-tool.js/blob/5f9f0083c734722103ff5468e424b48c212a55f0/src/tool-func.ts#L123)
|
|
2006
1892
|
|
|
2007
|
-
|
|
1893
|
+
***
|
|
2008
1894
|
|
|
2009
|
-
### hasOwn
|
|
1895
|
+
### hasOwn()
|
|
2010
1896
|
|
|
2011
|
-
|
|
1897
|
+
> `static` **hasOwn**(`o`, `v`): `boolean`
|
|
2012
1898
|
|
|
2013
1899
|
Determines whether an object has a property with the specified name.
|
|
2014
1900
|
|
|
2015
1901
|
#### Parameters
|
|
2016
1902
|
|
|
2017
|
-
|
|
2018
|
-
|
|
2019
|
-
|
|
2020
|
-
|
|
1903
|
+
• **o**: `object`
|
|
1904
|
+
|
|
1905
|
+
An object.
|
|
1906
|
+
|
|
1907
|
+
• **v**: `PropertyKey`
|
|
1908
|
+
|
|
1909
|
+
A property name.
|
|
2021
1910
|
|
|
2022
1911
|
#### Returns
|
|
2023
1912
|
|
|
@@ -2025,22 +1914,25 @@ Determines whether an object has a property with the specified name.
|
|
|
2025
1914
|
|
|
2026
1915
|
#### Defined in
|
|
2027
1916
|
|
|
2028
|
-
|
|
1917
|
+
node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es2022.object.d.ts:25
|
|
2029
1918
|
|
|
2030
|
-
|
|
1919
|
+
***
|
|
2031
1920
|
|
|
2032
|
-
### is
|
|
1921
|
+
### is()
|
|
2033
1922
|
|
|
2034
|
-
|
|
1923
|
+
> `static` **is**(`value1`, `value2`): `boolean`
|
|
2035
1924
|
|
|
2036
1925
|
Returns true if the values are the same value, false otherwise.
|
|
2037
1926
|
|
|
2038
1927
|
#### Parameters
|
|
2039
1928
|
|
|
2040
|
-
|
|
2041
|
-
|
|
2042
|
-
|
|
2043
|
-
|
|
1929
|
+
• **value1**: `any`
|
|
1930
|
+
|
|
1931
|
+
The first value.
|
|
1932
|
+
|
|
1933
|
+
• **value2**: `any`
|
|
1934
|
+
|
|
1935
|
+
The second value.
|
|
2044
1936
|
|
|
2045
1937
|
#### Returns
|
|
2046
1938
|
|
|
@@ -2048,21 +1940,21 @@ Returns true if the values are the same value, false otherwise.
|
|
|
2048
1940
|
|
|
2049
1941
|
#### Defined in
|
|
2050
1942
|
|
|
2051
|
-
|
|
1943
|
+
node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es2015.core.d.ts:332
|
|
2052
1944
|
|
|
2053
|
-
|
|
1945
|
+
***
|
|
2054
1946
|
|
|
2055
|
-
### isExtensible
|
|
1947
|
+
### isExtensible()
|
|
2056
1948
|
|
|
2057
|
-
|
|
1949
|
+
> `static` **isExtensible**(`o`): `boolean`
|
|
2058
1950
|
|
|
2059
1951
|
Returns a value that indicates whether new properties can be added to an object.
|
|
2060
1952
|
|
|
2061
1953
|
#### Parameters
|
|
2062
1954
|
|
|
2063
|
-
|
|
2064
|
-
|
|
2065
|
-
|
|
1955
|
+
• **o**: `any`
|
|
1956
|
+
|
|
1957
|
+
Object to test.
|
|
2066
1958
|
|
|
2067
1959
|
#### Returns
|
|
2068
1960
|
|
|
@@ -2070,21 +1962,21 @@ Returns a value that indicates whether new properties can be added to an object.
|
|
|
2070
1962
|
|
|
2071
1963
|
#### Defined in
|
|
2072
1964
|
|
|
2073
|
-
|
|
1965
|
+
node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es5.d.ts:258
|
|
2074
1966
|
|
|
2075
|
-
|
|
1967
|
+
***
|
|
2076
1968
|
|
|
2077
|
-
### isFrozen
|
|
1969
|
+
### isFrozen()
|
|
2078
1970
|
|
|
2079
|
-
|
|
1971
|
+
> `static` **isFrozen**(`o`): `boolean`
|
|
2080
1972
|
|
|
2081
1973
|
Returns true if existing property attributes and values cannot be modified in an object, and new properties cannot be added to the object.
|
|
2082
1974
|
|
|
2083
1975
|
#### Parameters
|
|
2084
1976
|
|
|
2085
|
-
|
|
2086
|
-
|
|
2087
|
-
|
|
1977
|
+
• **o**: `any`
|
|
1978
|
+
|
|
1979
|
+
Object to test.
|
|
2088
1980
|
|
|
2089
1981
|
#### Returns
|
|
2090
1982
|
|
|
@@ -2092,21 +1984,21 @@ Returns true if existing property attributes and values cannot be modified in an
|
|
|
2092
1984
|
|
|
2093
1985
|
#### Defined in
|
|
2094
1986
|
|
|
2095
|
-
|
|
1987
|
+
node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es5.d.ts:252
|
|
2096
1988
|
|
|
2097
|
-
|
|
1989
|
+
***
|
|
2098
1990
|
|
|
2099
|
-
### isSealed
|
|
1991
|
+
### isSealed()
|
|
2100
1992
|
|
|
2101
|
-
|
|
1993
|
+
> `static` **isSealed**(`o`): `boolean`
|
|
2102
1994
|
|
|
2103
1995
|
Returns true if existing property attributes cannot be modified in an object and new properties cannot be added to the object.
|
|
2104
1996
|
|
|
2105
1997
|
#### Parameters
|
|
2106
1998
|
|
|
2107
|
-
|
|
2108
|
-
|
|
2109
|
-
|
|
1999
|
+
• **o**: `any`
|
|
2000
|
+
|
|
2001
|
+
Object to test.
|
|
2110
2002
|
|
|
2111
2003
|
#### Returns
|
|
2112
2004
|
|
|
@@ -2114,53 +2006,57 @@ Returns true if existing property attributes cannot be modified in an object and
|
|
|
2114
2006
|
|
|
2115
2007
|
#### Defined in
|
|
2116
2008
|
|
|
2117
|
-
|
|
2009
|
+
node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es5.d.ts:246
|
|
2010
|
+
|
|
2011
|
+
***
|
|
2118
2012
|
|
|
2119
|
-
|
|
2013
|
+
### keys()
|
|
2120
2014
|
|
|
2121
|
-
|
|
2015
|
+
#### keys(o)
|
|
2122
2016
|
|
|
2123
|
-
|
|
2017
|
+
> `static` **keys**(`o`): `string`[]
|
|
2124
2018
|
|
|
2125
2019
|
Returns the names of the enumerable string properties and methods of an object.
|
|
2126
2020
|
|
|
2127
|
-
|
|
2021
|
+
##### Parameters
|
|
2128
2022
|
|
|
2129
|
-
|
|
2130
|
-
| :------ | :------ | :------ |
|
|
2131
|
-
| `o` | `object` | Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object. |
|
|
2023
|
+
• **o**: `object`
|
|
2132
2024
|
|
|
2133
|
-
|
|
2025
|
+
Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object.
|
|
2026
|
+
|
|
2027
|
+
##### Returns
|
|
2134
2028
|
|
|
2135
2029
|
`string`[]
|
|
2136
2030
|
|
|
2137
|
-
|
|
2031
|
+
##### Defined in
|
|
2138
2032
|
|
|
2139
|
-
|
|
2033
|
+
node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es5.d.ts:264
|
|
2140
2034
|
|
|
2141
|
-
|
|
2035
|
+
#### keys(o)
|
|
2036
|
+
|
|
2037
|
+
> `static` **keys**(`o`): `string`[]
|
|
2142
2038
|
|
|
2143
2039
|
Returns the names of the enumerable string properties and methods of an object.
|
|
2144
2040
|
|
|
2145
|
-
|
|
2041
|
+
##### Parameters
|
|
2146
2042
|
|
|
2147
|
-
|
|
2148
|
-
| :------ | :------ | :------ |
|
|
2149
|
-
| `o` | `Object` | Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object. |
|
|
2043
|
+
• **o**
|
|
2150
2044
|
|
|
2151
|
-
|
|
2045
|
+
Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object.
|
|
2046
|
+
|
|
2047
|
+
##### Returns
|
|
2152
2048
|
|
|
2153
2049
|
`string`[]
|
|
2154
2050
|
|
|
2155
|
-
|
|
2051
|
+
##### Defined in
|
|
2156
2052
|
|
|
2157
|
-
|
|
2053
|
+
node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es2015.core.d.ts:325
|
|
2158
2054
|
|
|
2159
|
-
|
|
2055
|
+
***
|
|
2160
2056
|
|
|
2161
|
-
### list
|
|
2057
|
+
### list()
|
|
2162
2058
|
|
|
2163
|
-
|
|
2059
|
+
> `static` **list**(): [`Funcs`](../interfaces/Funcs.md)
|
|
2164
2060
|
|
|
2165
2061
|
#### Returns
|
|
2166
2062
|
|
|
@@ -2168,13 +2064,13 @@ ___
|
|
|
2168
2064
|
|
|
2169
2065
|
#### Defined in
|
|
2170
2066
|
|
|
2171
|
-
[packages/ai-tool/src/tool-func.ts:81](https://github.com/isdk/ai-tool.js/blob/
|
|
2067
|
+
[packages/ai-tool/src/tool-func.ts:81](https://github.com/isdk/ai-tool.js/blob/5f9f0083c734722103ff5468e424b48c212a55f0/src/tool-func.ts#L81)
|
|
2172
2068
|
|
|
2173
|
-
|
|
2069
|
+
***
|
|
2174
2070
|
|
|
2175
|
-
### loadFrom
|
|
2071
|
+
### loadFrom()
|
|
2176
2072
|
|
|
2177
|
-
|
|
2073
|
+
> `static` **loadFrom**(): `Promise`\<`void`\>
|
|
2178
2074
|
|
|
2179
2075
|
#### Returns
|
|
2180
2076
|
|
|
@@ -2182,19 +2078,17 @@ ___
|
|
|
2182
2078
|
|
|
2183
2079
|
#### Defined in
|
|
2184
2080
|
|
|
2185
|
-
[packages/ai-tool/src/client-tools.ts:29](https://github.com/isdk/ai-tool.js/blob/
|
|
2081
|
+
[packages/ai-tool/src/client-tools.ts:29](https://github.com/isdk/ai-tool.js/blob/5f9f0083c734722103ff5468e424b48c212a55f0/src/client-tools.ts#L29)
|
|
2186
2082
|
|
|
2187
|
-
|
|
2083
|
+
***
|
|
2188
2084
|
|
|
2189
|
-
### loadFromSync
|
|
2085
|
+
### loadFromSync()
|
|
2190
2086
|
|
|
2191
|
-
|
|
2087
|
+
> `static` **loadFromSync**(`items`): `void`
|
|
2192
2088
|
|
|
2193
2089
|
#### Parameters
|
|
2194
2090
|
|
|
2195
|
-
|
|
2196
|
-
| :------ | :------ |
|
|
2197
|
-
| `items` | [`Funcs`](../interfaces/Funcs.md) |
|
|
2091
|
+
• **items**: [`Funcs`](../interfaces/Funcs.md)
|
|
2198
2092
|
|
|
2199
2093
|
#### Returns
|
|
2200
2094
|
|
|
@@ -2202,27 +2096,25 @@ ___
|
|
|
2202
2096
|
|
|
2203
2097
|
#### Defined in
|
|
2204
2098
|
|
|
2205
|
-
[packages/ai-tool/src/client-tools.ts:41](https://github.com/isdk/ai-tool.js/blob/
|
|
2099
|
+
[packages/ai-tool/src/client-tools.ts:41](https://github.com/isdk/ai-tool.js/blob/5f9f0083c734722103ff5468e424b48c212a55f0/src/client-tools.ts#L41)
|
|
2206
2100
|
|
|
2207
|
-
|
|
2101
|
+
***
|
|
2208
2102
|
|
|
2209
|
-
### preventExtensions
|
|
2103
|
+
### preventExtensions()
|
|
2210
2104
|
|
|
2211
|
-
|
|
2105
|
+
> `static` **preventExtensions**\<`T`\>(`o`): `T`
|
|
2212
2106
|
|
|
2213
2107
|
Prevents the addition of new properties to an object.
|
|
2214
2108
|
|
|
2215
|
-
#### Type
|
|
2109
|
+
#### Type Parameters
|
|
2216
2110
|
|
|
2217
|
-
|
|
2218
|
-
| :------ |
|
|
2219
|
-
| `T` |
|
|
2111
|
+
• **T**
|
|
2220
2112
|
|
|
2221
2113
|
#### Parameters
|
|
2222
2114
|
|
|
2223
|
-
|
|
2224
|
-
|
|
2225
|
-
|
|
2115
|
+
• **o**: `T`
|
|
2116
|
+
|
|
2117
|
+
Object to make non-extensible.
|
|
2226
2118
|
|
|
2227
2119
|
#### Returns
|
|
2228
2120
|
|
|
@@ -2230,75 +2122,77 @@ Prevents the addition of new properties to an object.
|
|
|
2230
2122
|
|
|
2231
2123
|
#### Defined in
|
|
2232
2124
|
|
|
2233
|
-
|
|
2125
|
+
node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es5.d.ts:240
|
|
2234
2126
|
|
|
2235
|
-
|
|
2127
|
+
***
|
|
2236
2128
|
|
|
2237
|
-
### register
|
|
2129
|
+
### register()
|
|
2238
2130
|
|
|
2239
|
-
|
|
2131
|
+
#### register(name, options)
|
|
2240
2132
|
|
|
2241
|
-
|
|
2133
|
+
> `static` **register**(`name`, `options`): `boolean` \| [`ToolFunc`](ToolFunc.md)
|
|
2134
|
+
|
|
2135
|
+
##### Parameters
|
|
2242
2136
|
|
|
2243
|
-
|
|
2244
|
-
| :------ | :------ |
|
|
2245
|
-
| `name` | `string` |
|
|
2246
|
-
| `options` | [`FuncItem`](../interfaces/FuncItem.md) |
|
|
2137
|
+
• **name**: `string`
|
|
2247
2138
|
|
|
2248
|
-
|
|
2139
|
+
• **options**: [`FuncItem`](../interfaces/FuncItem.md)
|
|
2140
|
+
|
|
2141
|
+
##### Returns
|
|
2249
2142
|
|
|
2250
2143
|
`boolean` \| [`ToolFunc`](ToolFunc.md)
|
|
2251
2144
|
|
|
2252
|
-
|
|
2145
|
+
##### Defined in
|
|
2253
2146
|
|
|
2254
|
-
[packages/ai-tool/src/tool-func.ts:172](https://github.com/isdk/ai-tool.js/blob/
|
|
2147
|
+
[packages/ai-tool/src/tool-func.ts:172](https://github.com/isdk/ai-tool.js/blob/5f9f0083c734722103ff5468e424b48c212a55f0/src/tool-func.ts#L172)
|
|
2255
2148
|
|
|
2256
|
-
|
|
2149
|
+
#### register(func, options)
|
|
2257
2150
|
|
|
2258
|
-
|
|
2151
|
+
> `static` **register**(`func`, `options`): `boolean` \| [`ToolFunc`](ToolFunc.md)
|
|
2259
2152
|
|
|
2260
|
-
|
|
2261
|
-
| :------ | :------ |
|
|
2262
|
-
| `func` | `Function` |
|
|
2263
|
-
| `options` | [`FuncItem`](../interfaces/FuncItem.md) |
|
|
2153
|
+
##### Parameters
|
|
2264
2154
|
|
|
2265
|
-
|
|
2155
|
+
• **func**: `Function`
|
|
2156
|
+
|
|
2157
|
+
• **options**: [`FuncItem`](../interfaces/FuncItem.md)
|
|
2158
|
+
|
|
2159
|
+
##### Returns
|
|
2266
2160
|
|
|
2267
2161
|
`boolean` \| [`ToolFunc`](ToolFunc.md)
|
|
2268
2162
|
|
|
2269
|
-
|
|
2163
|
+
##### Defined in
|
|
2270
2164
|
|
|
2271
|
-
[packages/ai-tool/src/tool-func.ts:173](https://github.com/isdk/ai-tool.js/blob/
|
|
2165
|
+
[packages/ai-tool/src/tool-func.ts:173](https://github.com/isdk/ai-tool.js/blob/5f9f0083c734722103ff5468e424b48c212a55f0/src/tool-func.ts#L173)
|
|
2272
2166
|
|
|
2273
|
-
|
|
2167
|
+
#### register(name, options)
|
|
2274
2168
|
|
|
2275
|
-
|
|
2169
|
+
> `static` **register**(`name`, `options`?): `boolean` \| [`ToolFunc`](ToolFunc.md)
|
|
2170
|
+
|
|
2171
|
+
##### Parameters
|
|
2276
2172
|
|
|
2277
|
-
|
|
2278
|
-
| :------ | :------ |
|
|
2279
|
-
| `name` | `string` \| `Function` \| [`ToolFunc`](ToolFunc.md) \| [`FuncItem`](../interfaces/FuncItem.md) |
|
|
2280
|
-
| `options?` | [`FuncItem`](../interfaces/FuncItem.md) |
|
|
2173
|
+
• **name**: `string` \| `Function` \| [`ToolFunc`](ToolFunc.md) \| [`FuncItem`](../interfaces/FuncItem.md)
|
|
2281
2174
|
|
|
2282
|
-
|
|
2175
|
+
• **options?**: [`FuncItem`](../interfaces/FuncItem.md)
|
|
2176
|
+
|
|
2177
|
+
##### Returns
|
|
2283
2178
|
|
|
2284
2179
|
`boolean` \| [`ToolFunc`](ToolFunc.md)
|
|
2285
2180
|
|
|
2286
|
-
|
|
2181
|
+
##### Defined in
|
|
2287
2182
|
|
|
2288
|
-
[packages/ai-tool/src/tool-func.ts:174](https://github.com/isdk/ai-tool.js/blob/
|
|
2183
|
+
[packages/ai-tool/src/tool-func.ts:174](https://github.com/isdk/ai-tool.js/blob/5f9f0083c734722103ff5468e424b48c212a55f0/src/tool-func.ts#L174)
|
|
2289
2184
|
|
|
2290
|
-
|
|
2185
|
+
***
|
|
2291
2186
|
|
|
2292
|
-
### run
|
|
2187
|
+
### run()
|
|
2293
2188
|
|
|
2294
|
-
|
|
2189
|
+
> `static` **run**(`name`, `params`?): `Promise`\<`any`\>
|
|
2295
2190
|
|
|
2296
2191
|
#### Parameters
|
|
2297
2192
|
|
|
2298
|
-
|
|
2299
|
-
|
|
2300
|
-
|
|
2301
|
-
| `params?` | `any` |
|
|
2193
|
+
• **name**: `string`
|
|
2194
|
+
|
|
2195
|
+
• **params?**: `any`
|
|
2302
2196
|
|
|
2303
2197
|
#### Returns
|
|
2304
2198
|
|
|
@@ -2306,20 +2200,19 @@ ___
|
|
|
2306
2200
|
|
|
2307
2201
|
#### Defined in
|
|
2308
2202
|
|
|
2309
|
-
[packages/ai-tool/src/tool-func.ts:130](https://github.com/isdk/ai-tool.js/blob/
|
|
2203
|
+
[packages/ai-tool/src/tool-func.ts:130](https://github.com/isdk/ai-tool.js/blob/5f9f0083c734722103ff5468e424b48c212a55f0/src/tool-func.ts#L130)
|
|
2310
2204
|
|
|
2311
|
-
|
|
2205
|
+
***
|
|
2312
2206
|
|
|
2313
|
-
### runSync
|
|
2207
|
+
### runSync()
|
|
2314
2208
|
|
|
2315
|
-
|
|
2209
|
+
> `static` **runSync**(`name`, `params`?): `any`
|
|
2316
2210
|
|
|
2317
2211
|
#### Parameters
|
|
2318
2212
|
|
|
2319
|
-
|
|
2320
|
-
|
|
2321
|
-
|
|
2322
|
-
| `params?` | `any` |
|
|
2213
|
+
• **name**: `string`
|
|
2214
|
+
|
|
2215
|
+
• **params?**: `any`
|
|
2323
2216
|
|
|
2324
2217
|
#### Returns
|
|
2325
2218
|
|
|
@@ -2327,20 +2220,19 @@ ___
|
|
|
2327
2220
|
|
|
2328
2221
|
#### Defined in
|
|
2329
2222
|
|
|
2330
|
-
[packages/ai-tool/src/tool-func.ts:138](https://github.com/isdk/ai-tool.js/blob/
|
|
2223
|
+
[packages/ai-tool/src/tool-func.ts:138](https://github.com/isdk/ai-tool.js/blob/5f9f0083c734722103ff5468e424b48c212a55f0/src/tool-func.ts#L138)
|
|
2331
2224
|
|
|
2332
|
-
|
|
2225
|
+
***
|
|
2333
2226
|
|
|
2334
|
-
### runWithPos
|
|
2227
|
+
### runWithPos()
|
|
2335
2228
|
|
|
2336
|
-
|
|
2229
|
+
> `static` **runWithPos**(`name`, ...`params`): `Promise`\<`any`\>
|
|
2337
2230
|
|
|
2338
2231
|
#### Parameters
|
|
2339
2232
|
|
|
2340
|
-
|
|
2341
|
-
|
|
2342
|
-
|
|
2343
|
-
| `...params` | `any`[] |
|
|
2233
|
+
• **name**: `string`
|
|
2234
|
+
|
|
2235
|
+
• ...**params**: `any`[]
|
|
2344
2236
|
|
|
2345
2237
|
#### Returns
|
|
2346
2238
|
|
|
@@ -2348,20 +2240,19 @@ ___
|
|
|
2348
2240
|
|
|
2349
2241
|
#### Defined in
|
|
2350
2242
|
|
|
2351
|
-
[packages/ai-tool/src/tool-func.ts:151](https://github.com/isdk/ai-tool.js/blob/
|
|
2243
|
+
[packages/ai-tool/src/tool-func.ts:151](https://github.com/isdk/ai-tool.js/blob/5f9f0083c734722103ff5468e424b48c212a55f0/src/tool-func.ts#L151)
|
|
2352
2244
|
|
|
2353
|
-
|
|
2245
|
+
***
|
|
2354
2246
|
|
|
2355
|
-
### runWithPosSync
|
|
2247
|
+
### runWithPosSync()
|
|
2356
2248
|
|
|
2357
|
-
|
|
2249
|
+
> `static` **runWithPosSync**(`name`, ...`params`): `any`
|
|
2358
2250
|
|
|
2359
2251
|
#### Parameters
|
|
2360
2252
|
|
|
2361
|
-
|
|
2362
|
-
|
|
2363
|
-
|
|
2364
|
-
| `...params` | `any`[] |
|
|
2253
|
+
• **name**: `string`
|
|
2254
|
+
|
|
2255
|
+
• ...**params**: `any`[]
|
|
2365
2256
|
|
|
2366
2257
|
#### Returns
|
|
2367
2258
|
|
|
@@ -2369,27 +2260,25 @@ ___
|
|
|
2369
2260
|
|
|
2370
2261
|
#### Defined in
|
|
2371
2262
|
|
|
2372
|
-
[packages/ai-tool/src/tool-func.ts:159](https://github.com/isdk/ai-tool.js/blob/
|
|
2263
|
+
[packages/ai-tool/src/tool-func.ts:159](https://github.com/isdk/ai-tool.js/blob/5f9f0083c734722103ff5468e424b48c212a55f0/src/tool-func.ts#L159)
|
|
2373
2264
|
|
|
2374
|
-
|
|
2265
|
+
***
|
|
2375
2266
|
|
|
2376
|
-
### seal
|
|
2267
|
+
### seal()
|
|
2377
2268
|
|
|
2378
|
-
|
|
2269
|
+
> `static` **seal**\<`T`\>(`o`): `T`
|
|
2379
2270
|
|
|
2380
2271
|
Prevents the modification of attributes of existing properties, and prevents the addition of new properties.
|
|
2381
2272
|
|
|
2382
|
-
#### Type
|
|
2273
|
+
#### Type Parameters
|
|
2383
2274
|
|
|
2384
|
-
|
|
2385
|
-
| :------ |
|
|
2386
|
-
| `T` |
|
|
2275
|
+
• **T**
|
|
2387
2276
|
|
|
2388
2277
|
#### Parameters
|
|
2389
2278
|
|
|
2390
|
-
|
|
2391
|
-
|
|
2392
|
-
|
|
2279
|
+
• **o**: `T`
|
|
2280
|
+
|
|
2281
|
+
Object on which to lock the attributes.
|
|
2393
2282
|
|
|
2394
2283
|
#### Returns
|
|
2395
2284
|
|
|
@@ -2397,19 +2286,17 @@ Prevents the modification of attributes of existing properties, and prevents the
|
|
|
2397
2286
|
|
|
2398
2287
|
#### Defined in
|
|
2399
2288
|
|
|
2400
|
-
|
|
2289
|
+
node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es5.d.ts:216
|
|
2401
2290
|
|
|
2402
|
-
|
|
2291
|
+
***
|
|
2403
2292
|
|
|
2404
|
-
### setApiRoot
|
|
2293
|
+
### setApiRoot()
|
|
2405
2294
|
|
|
2406
|
-
|
|
2295
|
+
> `static` **setApiRoot**(`v`): `void`
|
|
2407
2296
|
|
|
2408
2297
|
#### Parameters
|
|
2409
2298
|
|
|
2410
|
-
|
|
2411
|
-
| :------ | :------ |
|
|
2412
|
-
| `v` | `string` |
|
|
2299
|
+
• **v**: `string`
|
|
2413
2300
|
|
|
2414
2301
|
#### Returns
|
|
2415
2302
|
|
|
@@ -2417,22 +2304,25 @@ ___
|
|
|
2417
2304
|
|
|
2418
2305
|
#### Defined in
|
|
2419
2306
|
|
|
2420
|
-
[packages/ai-tool/src/client-tools.ts:23](https://github.com/isdk/ai-tool.js/blob/
|
|
2307
|
+
[packages/ai-tool/src/client-tools.ts:23](https://github.com/isdk/ai-tool.js/blob/5f9f0083c734722103ff5468e424b48c212a55f0/src/client-tools.ts#L23)
|
|
2421
2308
|
|
|
2422
|
-
|
|
2309
|
+
***
|
|
2423
2310
|
|
|
2424
|
-
### setPrototypeOf
|
|
2311
|
+
### setPrototypeOf()
|
|
2425
2312
|
|
|
2426
|
-
|
|
2313
|
+
> `static` **setPrototypeOf**(`o`, `proto`): `any`
|
|
2427
2314
|
|
|
2428
2315
|
Sets the prototype of a specified object o to object proto or null. Returns the object o.
|
|
2429
2316
|
|
|
2430
2317
|
#### Parameters
|
|
2431
2318
|
|
|
2432
|
-
|
|
2433
|
-
|
|
2434
|
-
|
|
2435
|
-
|
|
2319
|
+
• **o**: `any`
|
|
2320
|
+
|
|
2321
|
+
The object to change its prototype.
|
|
2322
|
+
|
|
2323
|
+
• **proto**: `null` \| `object`
|
|
2324
|
+
|
|
2325
|
+
The value of the new prototype or null.
|
|
2436
2326
|
|
|
2437
2327
|
#### Returns
|
|
2438
2328
|
|
|
@@ -2440,19 +2330,17 @@ Sets the prototype of a specified object o to object proto or null. Returns the
|
|
|
2440
2330
|
|
|
2441
2331
|
#### Defined in
|
|
2442
2332
|
|
|
2443
|
-
|
|
2333
|
+
node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es2015.core.d.ts:339
|
|
2444
2334
|
|
|
2445
|
-
|
|
2335
|
+
***
|
|
2446
2336
|
|
|
2447
|
-
### unregister
|
|
2337
|
+
### unregister()
|
|
2448
2338
|
|
|
2449
|
-
|
|
2339
|
+
> `static` **unregister**(`name`): `undefined` \| [`ToolFunc`](ToolFunc.md)
|
|
2450
2340
|
|
|
2451
2341
|
#### Parameters
|
|
2452
2342
|
|
|
2453
|
-
|
|
2454
|
-
| :------ | :------ |
|
|
2455
|
-
| `name` | `string` |
|
|
2343
|
+
• **name**: `string`
|
|
2456
2344
|
|
|
2457
2345
|
#### Returns
|
|
2458
2346
|
|
|
@@ -2460,50 +2348,52 @@ ___
|
|
|
2460
2348
|
|
|
2461
2349
|
#### Defined in
|
|
2462
2350
|
|
|
2463
|
-
[packages/ai-tool/src/tool-func.ts:202](https://github.com/isdk/ai-tool.js/blob/
|
|
2351
|
+
[packages/ai-tool/src/tool-func.ts:202](https://github.com/isdk/ai-tool.js/blob/5f9f0083c734722103ff5468e424b48c212a55f0/src/tool-func.ts#L202)
|
|
2464
2352
|
|
|
2465
|
-
|
|
2353
|
+
***
|
|
2466
2354
|
|
|
2467
|
-
### values
|
|
2355
|
+
### values()
|
|
2468
2356
|
|
|
2469
|
-
|
|
2357
|
+
#### values(o)
|
|
2470
2358
|
|
|
2471
|
-
|
|
2359
|
+
> `static` **values**\<`T`\>(`o`): `T`[]
|
|
2472
2360
|
|
|
2473
|
-
|
|
2361
|
+
Returns an array of values of the enumerable own properties of an object
|
|
2474
2362
|
|
|
2475
|
-
|
|
2476
|
-
| :------ |
|
|
2477
|
-
| `T` |
|
|
2363
|
+
##### Type Parameters
|
|
2478
2364
|
|
|
2479
|
-
|
|
2365
|
+
• **T**
|
|
2480
2366
|
|
|
2481
|
-
|
|
2482
|
-
| :------ | :------ | :------ |
|
|
2483
|
-
| `o` | \{ `[s: string]`: `T`; } \| `ArrayLike`\<`T`\> | Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object. |
|
|
2367
|
+
##### Parameters
|
|
2484
2368
|
|
|
2485
|
-
|
|
2369
|
+
• **o**: `object` \| `ArrayLike`\<`T`\>
|
|
2370
|
+
|
|
2371
|
+
Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object.
|
|
2372
|
+
|
|
2373
|
+
##### Returns
|
|
2486
2374
|
|
|
2487
2375
|
`T`[]
|
|
2488
2376
|
|
|
2489
|
-
|
|
2377
|
+
##### Defined in
|
|
2490
2378
|
|
|
2491
|
-
|
|
2379
|
+
node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es2017.object.d.ts:24
|
|
2492
2380
|
|
|
2493
|
-
|
|
2381
|
+
#### values(o)
|
|
2494
2382
|
|
|
2495
|
-
|
|
2383
|
+
> `static` **values**(`o`): `any`[]
|
|
2496
2384
|
|
|
2497
|
-
|
|
2385
|
+
Returns an array of values of the enumerable own properties of an object
|
|
2386
|
+
|
|
2387
|
+
##### Parameters
|
|
2498
2388
|
|
|
2499
|
-
|
|
2500
|
-
| :------ | :------ | :------ |
|
|
2501
|
-
| `o` | `Object` | Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object. |
|
|
2389
|
+
• **o**
|
|
2502
2390
|
|
|
2503
|
-
|
|
2391
|
+
Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object.
|
|
2392
|
+
|
|
2393
|
+
##### Returns
|
|
2504
2394
|
|
|
2505
2395
|
`any`[]
|
|
2506
2396
|
|
|
2507
|
-
|
|
2397
|
+
##### Defined in
|
|
2508
2398
|
|
|
2509
|
-
|
|
2399
|
+
node\_modules/.pnpm/typescript@5.6.2/node\_modules/typescript/lib/lib.es2017.object.d.ts:30
|