n8n
Version:
n8n Workflow Automation Tool
13 lines (12 loc) • 424 B
TypeScript
import type { LdapConfig } from '@n8n/constants';
import type { AuthenticatedRequest, RunningMode } from '@n8n/db';
export declare namespace LdapConfiguration {
type Update = AuthenticatedRequest<{}, {}, LdapConfig, {}>;
type Sync = AuthenticatedRequest<{}, {}, {
type: RunningMode;
}, {}>;
type GetSync = AuthenticatedRequest<{}, {}, {}, {
page?: string;
perPage?: string;
}>;
}