n8n-nodes-supadata
Version:
Tool for extracting content from YouTube videos and web pages
17 lines (16 loc) • 511 B
TypeScript
import { ICredentialType, INodeProperties, ICredentialTestRequest } from 'n8n-workflow';
export declare class SupadataApi implements ICredentialType {
name: string;
displayName: string;
documentationUrl: string;
properties: INodeProperties[];
authenticate: {
readonly type: "generic";
readonly properties: {
readonly headers: {
readonly 'x-api-key': "={{$credentials.apiKey}}";
};
};
};
test: ICredentialTestRequest;
}