/** * WordPress Posts Tools - Legacy Import Module * * This file maintains backward compatibility while the codebase transitions * to the new modular structure. The actual implementation has been refactored * into focused modules under ./posts/ directory. * * @deprecated Use direct imports from ./posts/ modules instead * @see ./posts/index.ts for the new modular implementation */ export { PostTools as default, PostTools } from "./posts/index.js"; export type { CreatePostRequest, PostQueryParams, UpdatePostRequest, WordPressPost } from "../types/wordpress.js"; export { postToolDefinitions } from "./posts/PostToolDefinitions.js"; export { handleListPosts, handleGetPost, handleCreatePost, handleUpdatePost, handleDeletePost, handleGetPostRevisions, } from "./posts/PostHandlers.js"; //# sourceMappingURL=posts.d.ts.map