💡 fix function docs

This commit is contained in:
Ben Hesseldieck 2020-07-08 14:39:44 +02:00
parent 2fea79f5f1
commit 10a26ee75d

View file

@ -58,7 +58,7 @@ export function pgQuery(
* @param {Function} getNodeParam The getter of the Node * @param {Function} getNodeParam The getter of the Node
* @param {pgPromise.IMain<{}, pg.IClient>} pgp The pgPromise instance * @param {pgPromise.IMain<{}, pg.IClient>} pgp The pgPromise instance
* @param {pgPromise.IDatabase<{}, pg.IClient>} db The pgPromise database connection * @param {pgPromise.IDatabase<{}, pg.IClient>} db The pgPromise database connection
* @param {input[]} input The Node's input data * @param {INodeExecutionData[]} items The items to be inserted
* @returns Promise<Array<IDataObject>> * @returns Promise<Array<IDataObject>>
*/ */
export async function pgInsert( export async function pgInsert(
@ -102,7 +102,7 @@ export async function pgInsert(
* @param {Function} getNodeParam The getter of the Node * @param {Function} getNodeParam The getter of the Node
* @param {pgPromise.IMain<{}, pg.IClient>} pgp The pgPromise instance * @param {pgPromise.IMain<{}, pg.IClient>} pgp The pgPromise instance
* @param {pgPromise.IDatabase<{}, pg.IClient>} db The pgPromise database connection * @param {pgPromise.IDatabase<{}, pg.IClient>} db The pgPromise database connection
* @param {input[]} input The Node's input data * @param {INodeExecutionData[]} items The items to be updated
* @returns Promise<Array<IDataObject>> * @returns Promise<Array<IDataObject>>
*/ */
export async function pgUpdate( export async function pgUpdate(