/// import type { Action } from '../Actions'; interface PopupAction extends Action { /** * 是否固定在顶部 * @type { boolean } * @default false */ pinned?: boolean; } export interface PopupActionProps { /** * 操作列表 * @type { PopupAction[] } * @default [] */ actions?: PopupAction[]; /** * 触发弹出元素 * @type { React.ReactNode } * @default undefined */ children: React.ReactNode; } export {};