refactor(core): Fix type errors in workflow, core, nodes-langchain, and nodes-base (no-changelog) (#9450)

This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™
2024-05-22 17:40:52 +02:00
committed by GitHub
parent d9616fc36f
commit 2bdc459bb2
98 changed files with 126 additions and 156 deletions

View File

@@ -290,7 +290,7 @@ describe('AugmentObject', () => {
});
test('should work with complex values on first level', () => {
const originalObject = {
const originalObject: any = {
a: {
b: {
cc: '3',
@@ -483,7 +483,7 @@ describe('AugmentObject', () => {
test('should be faster than doing a deepCopy', () => {
const iterations = 100;
const originalObject: IDataObject = {
const originalObject: any = {
a: {
b: {
c: {
@@ -530,7 +530,7 @@ describe('AugmentObject', () => {
});
test('should return property descriptors', () => {
const originalObject = {
const originalObject: any = {
x: {
y: {},
z: {},
@@ -559,7 +559,7 @@ describe('AugmentObject', () => {
});
test('should return valid values on `has` calls', () => {
const originalObject = {
const originalObject: any = {
x: {
y: {},
},