n8n-nodes-base
Version:
Base nodes of n8n
10 lines • 409 B
TypeScript
import type { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
export interface IGoogleAuthCredentials {
email: string;
privateKey: string;
}
export declare class GoogleBooks implements INodeType {
description: INodeTypeDescription;
execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
}
//# sourceMappingURL=GoogleBooks.node.d.ts.map