mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
👕 Fix lint issue
This commit is contained in:
parent
60be31d410
commit
55f3f2830b
|
@ -72,7 +72,7 @@ export async function quickbaseApiRequest(this: IExecuteFunctions | ILoadOptions
|
|||
}
|
||||
|
||||
//@ts-ignore
|
||||
export async function getFieldsObject(this: IHookFunctions | ILoadOptionsFunctions | IExecuteFunctions, tableId: string): any {
|
||||
export async function getFieldsObject(this: IHookFunctions | ILoadOptionsFunctions | IExecuteFunctions, tableId: string): any { // tslint:disable-line:no-any
|
||||
const fieldsLabelKey: { [key: string]: number } = {};
|
||||
const fieldsIdKey: { [key: number]: string } = {};
|
||||
const data = await quickbaseApiRequest.call(this, 'GET', '/fields', {}, { tableId });
|
||||
|
|
Loading…
Reference in a new issue