UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

7 lines 734 B
import type { IExecuteFunctions, IHookFunctions, ILoadOptionsFunctions, IDataObject, IHttpRequestMethods } from 'n8n-workflow'; export type Context = IHookFunctions | IExecuteFunctions | ILoadOptionsFunctions; export declare function FormatDueDatetime(isoString: string): string; export declare function todoistApiRequest(this: Context, method: IHttpRequestMethods, resource: string, body?: IDataObject, qs?: IDataObject): Promise<any>; export declare function todoistSyncRequest(this: Context, body?: any, qs?: IDataObject, endpoint?: string): Promise<any>; export declare function todoistApiGetAllRequest(ctx: Context, resource: string, qs?: IDataObject, limit?: number): Promise<any>; //# sourceMappingURL=GenericFunctions.d.ts.map