import type { CommonAction } from "@iflyrpa/share"; import type { ActiomCommonParams } from "../../types"; export type Source = "ai" | "official" | "fictional" | "personal"; export interface WeixinmpPublishParams extends ActiomCommonParams { token: string | number; banners?: string[]; title: string; content: string; /** * 内容由AI生成 - ai * 素材来源官方媒体/网络新闻 - official * 内容剧情演绎,仅供娱乐 - fictional * 个人观点,仅供参考 - personal */ source?: Source; draft?: boolean; } export type PublishAction = CommonAction; export declare const weixinmpPublish: PublishAction;