UNPKG

n8n-nodes-salutespeech

Version:

User-friendly SaluteSpeech (Sber) community node

10 lines (9 loc) 274 B
import { AxiosInstance } from 'axios'; import { AccessToken } from './interfaces'; interface AuthArgs { url: string; credentials: string; scope: string; } export declare function post_auth(client: AxiosInstance, args: AuthArgs): Promise<AccessToken>; export {};