32992834ee
- Xiaohongshu search via local MCP service (opt-in, zero impact if service not running) - Reddit public JSON fallback (works with zero API keys) - Reddit priority: ScrapeCreators -> OpenAI -> public fallback - Updated env.py: Reddit always available via public fallback Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
8 lines
565 B
TypeScript
8 lines
565 B
TypeScript
import type { AbstractConstructor, Mixin, TwitterClientBase } from './twitter-client-base.js';
|
|
import type { TweetResult } from './twitter-client-types.js';
|
|
export interface TwitterClientPostingMethods {
|
|
tweet(text: string, mediaIds?: string[]): Promise<TweetResult>;
|
|
reply(text: string, replyToTweetId: string, mediaIds?: string[]): Promise<TweetResult>;
|
|
}
|
|
export declare function withPosting<TBase extends AbstractConstructor<TwitterClientBase>>(Base: TBase): Mixin<TBase, TwitterClientPostingMethods>;
|
|
//# sourceMappingURL=twitter-client-posting.d.ts.map
|