UNPKG

391 BTypeScriptView Raw
1import { ComponentType } from 'react'
2
3import { StandardProps } from './common'
4
5interface SpanProps extends StandardProps { }
6
7/**
8 * 用于支持内联文本和 image / navigator 的混排
9 * @classification skyline
10 * @supported weapp
11 * @see https://developers.weixin.qq.com/miniprogram/dev/component/span.html
12 */
13declare const Span: ComponentType<SpanProps>
14export { Span, SpanProps }