mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
refactor: Introduce explicit-member-accessibility lint rule (#12325)
This commit is contained in:
@@ -388,7 +388,7 @@ class AIParametersParser {
|
||||
* Creates a DynamicStructuredTool from a node.
|
||||
* @returns A DynamicStructuredTool instance.
|
||||
*/
|
||||
public createTool(): DynamicStructuredTool {
|
||||
createTool(): DynamicStructuredTool {
|
||||
const { node, nodeType } = this.options;
|
||||
const schema = this.getSchema();
|
||||
const description = this.getDescription();
|
||||
|
||||
@@ -53,7 +53,7 @@ describe('Memoized Decorator', () => {
|
||||
class InvalidClass {
|
||||
// @ts-expect-error this code will fail at compile time and at runtime
|
||||
@Memoized
|
||||
public normalProperty = 42;
|
||||
normalProperty = 42;
|
||||
}
|
||||
new InvalidClass();
|
||||
}).toThrow(AssertionError);
|
||||
|
||||
Reference in New Issue
Block a user