import type { IPluginContext } from '@tarojs/service'; export interface IOptions { /** 支持 document.cookie 和 http 设置 cookie (默认false) */ enableCookie?: boolean; /** 禁用掉 FormData 全局对象 (默认true禁用) */ disabledFormData?: boolean; /** 禁用掉 Blob 全局对象 (默认true禁用) */ disabledBlob?: boolean; } declare const _default: (ctx: IPluginContext, options: IOptions) => void; export default _default;