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