jamis
Version:
一种支持通过JSON配置方式生成页面的组件库
14 lines (13 loc) • 389 B
TypeScript
import type { RendererEnv } from 'jamis-core';
import type { SchemaCopyable } from '../types';
export * from './Copyable.types';
export * from './PopOver.types';
export * from './QuickEdit.types';
export interface UseCopyableProps {
copy: RendererEnv['copy'];
copyable?: SchemaCopyable;
/**
* 解析复制内容
*/
resolveContent: (content?: string) => string;
}