aa4befa0ff
- 下载资源管理与 /download/{slug} 下载链接
- 下载统计(次数/去重人数/明细/CSV 导出)
- 按资源邮箱验证(Halo 通知中心发信,互认评论插件已验证邮箱)
- 本地附件防直链(/upload/** 404)
- 文章引用扫描
- Console 前端:Vue3 + ui-plugin-bundler-kit
24 lines
678 B
TypeScript
24 lines
678 B
TypeScript
/// <reference types="@rsbuild/core/types" />
|
|
|
|
// AttachmentSelectorModal 是 Halo Console 全局注册的业务组件(非 @halo-dev/components 导出),
|
|
// 见 https://docs.halo.run/developer-guide/plugin/api-reference/ui/components/attachment-selector-modal/
|
|
declare module 'vue' {
|
|
interface GlobalComponents {
|
|
AttachmentSelectorModal: import('vue').DefineComponent<
|
|
{ visible?: boolean },
|
|
{},
|
|
{},
|
|
{},
|
|
{},
|
|
import('vue').ComponentOptionsMixin,
|
|
import('vue').ComponentOptionsMixin,
|
|
{
|
|
'update:visible': (value: boolean) => void;
|
|
select: (attachments: unknown[]) => void;
|
|
}
|
|
>;
|
|
}
|
|
}
|
|
|
|
export {};
|