UNPKG

lark-cms

Version:

Multi terminal CMS component library

33 lines (32 loc) 704 B
import React from "react"; type Props = { /** * 导航对象 */ navigation?: any; /** * 作者用户的信息 */ userInfo?: any; /** * 时间标签 */ writeTime?: number; /** * 自定义内容的样式 */ commonStyle?: any; /** * 包裹容器的宽度,默认230 */ wrapWidth?: number; /** * 快速关注按钮(不需要时:就删除此参数或者传null) */ compsFollow?: any; }; /** * 【作者栏】条目状 */ declare const YhwWriterColumnRN: ({ navigation, userInfo, writeTime, commonStyle, wrapWidth, compsFollow }: Props) => React.JSX.Element; export default YhwWriterColumnRN;