n8n-nodes-salutespeech
Version:
User-friendly SaluteSpeech (Sber) community node
16 lines (15 loc) • 393 B
TypeScript
declare const ENV_PREFIX = "SALUTESPEECH_";
interface Settings {
baseUrl: string;
authUrl: string;
credentials?: string;
scope: string;
accessToken?: string;
profanityCheck?: boolean;
timeout: number;
verbose: boolean;
httpsAgent?: any;
}
declare function getDefaultSettings(): Settings;
export type { Settings };
export { getDefaultSettings, ENV_PREFIX };