UNPKG
dtamind-components
Version:
latest (4.0.0)
4.0.0
3.0.4
Apps integration for Dtamind. Contain Nodes and Credentials.
dtamindai.com
DtamindAI/Dtamind
dtamind-components
/
dist
/
nodes
/
tools
/
MicrosoftTeams
/
core.d.ts
10 lines
(9 loc)
•
290 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
DynamicStructuredTool
}
from
'../OpenAPIToolkit/core'
;
interface
TeamsToolOptions
{
accessToken
:
string
;
actions
:
string
[];
defaultParams
:
any
;
type
:
string
; }
export
declare
function
createTeamsTools
(
options
:
TeamsToolOptions
):
DynamicStructuredTool
[];
export
{};