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