UNPKG

n8n

Version:

n8n Workflow Automation Tool

10 lines (9 loc) 512 B
import * as express from 'express'; import { IPackageVersions } from '.'; export declare function getBaseUrl(): string; export declare function getSessionId(req: express.Request): string | undefined; export declare function getVersions(): Promise<IPackageVersions>; export declare function getConfigValue(configKey: string): Promise<string | boolean | number | undefined>; export declare function generateUniqueName(requestedName: string, entityType: 'workflow' | 'credentials'): Promise<{ name: string; }>;