Files
2025-09-08 04:48:28 +08:00

20 lines
356 B
TypeScript
Executable File

import type { ICredentialType, INodeProperties } from 'n8n-workflow';
export class SearXngApi implements ICredentialType {
name = 'searXngApi';
displayName = 'SearXNG';
documentationUrl = 'searxng';
properties: INodeProperties[] = [
{
displayName: 'API URL',
name: 'apiUrl',
type: 'string',
default: '',
required: true,
},
];
}