n8n-nodes-base
Version:
Base nodes of n8n
19 lines • 1.23 kB
TypeScript
import type { IExecuteFunctions, ILoadOptionsFunctions, INodeExecutionData, INodePropertyOptions, INodeType, INodeTypeDescription } from 'n8n-workflow';
export declare class InvoiceNinja implements INodeType {
description: INodeTypeDescription;
methods: {
loadOptions: {
getClients(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
getProjects(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
getInvoices(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
getCountryCodes(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
getVendors(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
getExpenseCategories(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
getBankIntegrations(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
getPayments(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
getCurrencies(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
};
};
execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
}
//# sourceMappingURL=InvoiceNinja.node.d.ts.map