jamis
Version:
一种支持通过JSON配置方式生成页面的组件库
7 lines (6 loc) • 334 B
TypeScript
import type { RendererProps } from 'jamis-core';
import type { WithPrefixAffixHook } from './types';
/**
* 支持在目标元素前后包装一个元素
*/
export declare const withPrefixAffixRegion: ({ render, affixRegion, prefixRegion }: WithPrefixAffixHook & Pick<RendererProps, "render">, children: JSX.Element) => JSX.Element;