mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-23 12:49:09 +00:00
fix(core): Remove linting exceptions in nodes-base, @typescript-eslint/no-unsafe-argument (no-changelog)
This commit is contained in:
@@ -1,3 +1,5 @@
|
||||
import type { IDataObject } from 'n8n-workflow';
|
||||
|
||||
export interface ITweet {
|
||||
auto_populate_reply_metadata?: boolean;
|
||||
display_coordinates?: boolean;
|
||||
@@ -8,3 +10,16 @@ export interface ITweet {
|
||||
status: string;
|
||||
in_reply_to_status_id?: string;
|
||||
}
|
||||
|
||||
export interface ITweetCreate {
|
||||
type: 'message_create';
|
||||
message_create: {
|
||||
target: {
|
||||
recipient_id: string;
|
||||
};
|
||||
message_data: {
|
||||
text: string;
|
||||
attachment?: IDataObject;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user