n8n-nodes-powerbi
Version:
n8n nodes for integration with Power BI APIs
11 lines (10 loc) • 500 B
TypeScript
import type { ICredentialDataDecryptedObject, ICredentialTestRequest, ICredentialType, IHttpRequestOptions, INodeProperties } from 'n8n-workflow';
export declare class PowerBiApi implements ICredentialType {
name: string;
displayName: string;
documentationUrl: string;
icon: string;
properties: INodeProperties[];
authenticate(credentials: ICredentialDataDecryptedObject, requestOptions: IHttpRequestOptions): Promise<IHttpRequestOptions>;
test: ICredentialTestRequest;
}