n8n
Version:
n8n Workflow Automation Tool
11 lines (10 loc) • 466 B
TypeScript
import type { LdapRequest } from '../../../types';
import type { PublicAPIEndpoint } from '../../shared/handler.types';
type LdapHandlers = {
getLdapConfiguration: PublicAPIEndpoint<LdapRequest.GetConfig>;
updateLdapConfiguration: PublicAPIEndpoint<LdapRequest.UpdateConfig>;
getLdapSync: PublicAPIEndpoint<LdapRequest.GetSync>;
runLdapSync: PublicAPIEndpoint<LdapRequest.RunSync>;
};
declare const ldapHandlers: LdapHandlers;
export = ldapHandlers;