/** * 企业微信处理器类型定义与常量 * * 从 wecom.ts 提取。 */ export declare const ATTACHMENT_BASE_DIR: string; export declare const ALLOWED_ATTACHMENT_EXTENSIONS: Set; export declare const WECOM_MESSAGE_LIMIT = 1800; export type OpencodeFilePartInput = { type: 'file'; mime: string; url: string; filename?: string; }; export type OpencodePartInput = { type: 'text'; text: string; } | OpencodeFilePartInput; export type PermissionDecision = { allow: boolean; remember: boolean; }; //# sourceMappingURL=wecom-types.d.ts.map