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>
9 lines
654 B
TypeScript
9 lines
654 B
TypeScript
import type { AbstractConstructor, Mixin, TwitterClientBase } from './twitter-client-base.js';
|
|
import type { CurrentUserResult, FollowingResult } from './twitter-client-types.js';
|
|
export interface TwitterClientUserMethods {
|
|
getCurrentUser(): Promise<CurrentUserResult>;
|
|
getFollowing(userId: string, count?: number, cursor?: string): Promise<FollowingResult>;
|
|
getFollowers(userId: string, count?: number, cursor?: string): Promise<FollowingResult>;
|
|
}
|
|
export declare function withUsers<TBase extends AbstractConstructor<TwitterClientBase>>(Base: TBase): Mixin<TBase, TwitterClientUserMethods>;
|
|
//# sourceMappingURL=twitter-client-users.d.ts.map
|